#ifndef INI_H #define INI_H #include #include #include #include #include namespace fs = std::filesystem; namespace ini { class IniHelper { private: std::fstream handle; public: IniHelper() { auto path = (fs::current_path() / "ini.ini").string(); std::cout << path < inline T GetValue(const std::string §ion, const std::string &key, T &&default_value) { throw std::exception("Not Implemented"); } template inline bool SaveValue(const std::string §ion, const std::string &key, T &&default_value) { throw std::exception("Not Implemented"); } }; } #endif // !INI_H