first commit, base server
This commit is contained in:
17
config_package.h
Normal file
17
config_package.h
Normal 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
|
||||
Reference in New Issue
Block a user