#ifndef __PROPERTIES_CONFIG_H__ #define __PROPERTIES_CONFIG_H__ #include "usg_common.h" class PropertiesConfig { std::string propertiesFile; std::map propertiesMap; public: PropertiesConfig(std::string _propertiesFile="./config.properties"); std::string get(std::string name); int getInt(std::string name); }; #endif