sudo and doxygen

This commit is contained in:
2020-06-01 23:23:23 +02:00
parent 3387aa7ca1
commit fda48edaf0
9 changed files with 237 additions and 23 deletions

View File

@@ -6,7 +6,17 @@
class config_package
{
public:
/**
* @brief config_package
* Generate a config file, or replace it
* @param name Name of the package
*/
config_package(std::string name);
/**
* @brief change_uses
* Write a config file
* @param remote_uses Info to write in the file
*/
void change_uses(std::string remote_uses);
private:
std::string name;