12345678910111213141516171819 |
- #ifndef CONFIG_H
- #define CONFIG_H
- #include <map>
- #include <fstream>
- #include <sstream>
- #include <vector>
- // loads configurationdata from config.txt
- class Config {
- public:
- bool init();
- std::string getValue(std::string key);
- private:
- std::map<std::string, std::string> storage;
- };
- #endif
|