#include "config.hpp" #include #include #ifndef __CONFIG_FILE_HPP_ #define __CONFIG_FILE_HPP_ namespace cf { const std::string g_cofigFile = "~/.config/stressUI.cfg"; Config *openConfig(); void closeConfig(Config *config); std::string getLine(std::ifstream *file); void saveConfig(); void createConfig(); } // namespace cf #endif // __CONFIG_FILE_HPP_