first commit, base client with gtk3

This commit is contained in:
2020-05-08 12:42:02 +02:00
commit f9cdde7008
17 changed files with 777 additions and 0 deletions

15
config_reader.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef CONFIG_READER_H
#define CONFIG_READER_H
#include <string>
#include <fstream>
class config_reader
{
public:
config_reader(std::string);
bool get_param(std::string variable, std::string &value);
private:
std::ifstream file;
};
#endif // CONFIG_READER_H