2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "StringMap.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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];
|
2011-10-03 14:41:19 -04:00
|
|
|
}
|