summaryrefslogtreecommitdiffstats
path: root/source/cStringMap.cpp
blob: 1ddc2197ce5fae6d237a4f2eeee0de87d9e7a4ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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];
}