refactoring and minor changes

This commit is contained in:
2020-05-15 21:39:23 +02:00
parent 726d990d20
commit 9f7dbd6cf7
5 changed files with 65 additions and 4 deletions

View File

@@ -8,14 +8,17 @@ public:
session_manager(int fd);
void start_dialog();
int execute();
int remove();
void send_information();
bool validate_pass();
private:
std::string appli_command(char comand[], char* n_package);
virtual int read_data(char* input, int size);
virtual int write_data(std::string output);
int fd;
data_acces* data;
char** args;
std::string user;
};
#endif // LAUNCHER_H