Init commit
This commit is contained in:
14
include/configFile.hpp
Normal file
14
include/configFile.hpp
Normal file
@ -0,0 +1,14 @@
|
||||
#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_
|
Reference in New Issue
Block a user