refactoring, expand interface

This commit is contained in:
2020-05-13 00:56:26 +02:00
parent f9cdde7008
commit 7691c80fb4
12 changed files with 100 additions and 38 deletions

17
session_manager.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef SESSION_MANAGER_H
#define SESSION_MANAGER_H
#include "conexion.h"
#include <string>
class session_manager
{
public:
session_manager(conexion* con);
conexion* con;
bool loggin(std::string username, std::string passwd);
int install_command(std::string package);
};
#endif // SESSION_MANAGER_H