summaryrefslogblamecommitdiffstats
path: root/source/cStringMap.cpp
blob: 7907efc34855235f8018d8890e17cb69afe3252a (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                                                               

                        



 













                                                           

#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];
}