Added information about packages installed

This commit is contained in:
2020-05-19 20:34:51 +02:00
parent 9eb45f329a
commit 4fc3d964ce
17 changed files with 202 additions and 20 deletions

View File

@@ -4,6 +4,7 @@
#include "conexion.h"
#include <string>
#include <list>
class session_manager
{
@@ -13,6 +14,7 @@ public:
bool loggin(std::string username, std::string passwd);
int install_command(std::string package);
int remove_command(std::string package);
std::list<std::string> get_packages_info();
};
#endif // SESSION_MANAGER_H