#pragma once #include #include class Config { public: Config(const std::string &filepath); std::string get(const std::string &key) const; private: std::map config_map; void load(const std::string &filepath); };