summaryrefslogtreecommitdiffstats
path: root/source/StringMap.cpp
blob: 8ba8891e0feb24b0b1179e94629425237327eb06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "StringMap.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];
}