#ifndef CONFIG_H #define CONFIG_H #include #include class Config { public: bool loadFromFile(const std::string& filename); nlohmann::json getConfig() const; private: nlohmann::json configData; }; #endif // CONFIG_H