first commit, base server

This commit is contained in:
2020-05-08 12:43:46 +02:00
commit e5078b4969
23 changed files with 955 additions and 0 deletions

17
config_package.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef CONFIG_PACKAGE_H
#define CONFIG_PACKAGE_H
#include <string>
#include <fstream>
class config_package
{
public:
config_package(std::string name);
void change_uses(std::string remote_uses);
private:
std::string name;
std::string uses;
std::fstream file;
};
#endif // CONFIG_PACKAGE_H