refactoring, expand interface
This commit is contained in:
17
session_manager.h
Normal file
17
session_manager.h
Normal 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
|
||||
Reference in New Issue
Block a user