Stress_UI/include/configFile.hpp

15 lines
371 B
C++
Raw Normal View History

2020-10-20 14:16:46 +02:00
#include "config.hpp"
#include <fstream>
#include <string>
#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_