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

18
read_uses.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef READ_USES_H
#define READ_USES_H
#include <string>
#include <fstream>
#include <list>
class read_uses
{
public:
read_uses(std::string name);
std::string* get_uses();
private:
std::ifstream file;
std::string short_name;
bool exist;
};
#endif // READ_USES_H