ServidorTFG
Cosas
C++
ServidorTFG
config_package.h
1
#ifndef CONFIG_PACKAGE_H
2
#define CONFIG_PACKAGE_H
3
#include <string>
4
#include <fstream>
5
6
class
config_package
7
{
8
public
:
14
config_package
(std::string name);
20
void
change_uses
(std::string remote_uses);
21
private
:
22
std::string name;
23
std::string uses;
24
std::fstream file;
25
};
26
27
#endif // CONFIG_PACKAGE_H
config_package::config_package
config_package(std::string name)
config_package Generate a config file, or replace it
Definition:
config_package.cpp:3
config_package
Definition:
config_package.h:6
config_package::change_uses
void change_uses(std::string remote_uses)
change_uses Write a config file
Definition:
config_package.cpp:12
Generated by
1.8.17