#ifndef CONFIG_H #define CONFIG_H #include #include #include #include // loads configurationdata from config.txt class Config { public: bool init(); std::string getValue(std::string key); private: std::map storage; }; #endif