#ifndef CONFIG_H #define CONFIG_H #include #include #include #include // loads configurationdata from config.txt namespace Config { bool init(const std::string &filename); std::string getValue(const std::string &key); extern std::map storage; }; // namespace Config #endif