diff options
Diffstat (limited to 'source/cStringMap.cpp')
-rw-r--r-- | source/cStringMap.cpp | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/source/cStringMap.cpp b/source/cStringMap.cpp index 7907efc34..26b9cf5fe 100644 --- a/source/cStringMap.cpp +++ b/source/cStringMap.cpp @@ -1,23 +1,23 @@ -
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "cStringMap.h"
-
-
-
-
-
-unsigned int cStringMap::size() const
-{
- return m_StringMap.size();
-}
-
-void cStringMap::clear()
-{
- m_StringMap.clear();
-}
-
-std::string & cStringMap::get( const std::string & index )
-{
- return m_StringMap[index];
+ +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "cStringMap.h" + + + + + +unsigned int cStringMap::size() const +{ + return m_StringMap.size(); +} + +void cStringMap::clear() +{ + m_StringMap.clear(); +} + +std::string & cStringMap::get( const std::string & index ) +{ + return m_StringMap[index]; }
\ No newline at end of file |