From b6ca98f380cd036bfcc544f11f9d906f37c981a8 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Sat, 9 Nov 2013 19:54:52 +0100 Subject: Removed cStringMap. It wasn't used for anything anymore. --- source/StringMap.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 source/StringMap.h (limited to 'source/StringMap.h') diff --git a/source/StringMap.h b/source/StringMap.h deleted file mode 100644 index 4b6bb5558..000000000 --- a/source/StringMap.h +++ /dev/null @@ -1,29 +0,0 @@ - -// A std::map interface for Lua - -#pragma once - -#include "tolua++.h" - - - - - -class cStringMap // tolua_export -{ // tolua_export -public: // tolua_export - cStringMap(std::map< std::string, std::string > a_StringMap) : m_StringMap( a_StringMap ) {} - void clear(); // tolua_export - - unsigned int size() const; // tolua_export - - std::string & get( const std::string & index ); // tolua_export - - std::map< std::string, std::string >& GetStringMap() { return m_StringMap; } -private: - std::map< std::string, std::string > m_StringMap; -}; // tolua_export - - - - -- cgit v1.2.3