#ifndef _GAMA_DB_CONFIGURATOR_ #define _GAMA_DB_CONFIGURATOR_ #include #include class CConfigurator { public: CConfigurator(); ~CConfigurator(); bool Load(const char* szFileName); const char* Get(const char* szKey); void Clear(); private: typedef std::map ConfigMap; ConfigMap m_ConfigMap; }; #endif