ServidorTFG/config_package.h

18 lines
301 B
C
Raw Normal View History

2020-05-08 12:43:46 +02:00
#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