====== cStringMap  ======
cStringMap is an object that maps strings with strings, it's also known as a dictionary

===== Class Definition =====
<code cpp>
class cStringMap
{
	void clear();
	unsigned int size();
	string get( string Index );
};				
</code>
===== Example =====
A cStringMap could contain this data:
^ Index      ^ Value ^
| Apple | Juice |
| One | 1 |
| Two | 2 |
You can then use the ''get()'' function to get the data that is mapped to the index.
<code lua>
	StringMap:get("Apple") -- Gives "Juice"
	StringMap:get("One")   -- Gives "1"
	StringMap:get("Two")   -- Gives "2"
</code>
===== Functions =====
==== clear() ====
Removes all entries in the map
==== size() ====
Returns how many entries are in the map
==== get() ====
Gets the value that is mapped to the index
