ClienteTFG/controller_install.h
2020-06-01 23:24:24 +02:00

32 lines
677 B
C++

#ifndef CONTROLADOR_H
#define CONTROLADOR_H
#include "view_install.h"
#include "conexion.h"
#include "session_manager.h"
class controller_install
{
public:
/**
* @brief controller_install
* View controler that send a name package to build
* @param view View to controle
* @param sesion Model to have the funcionality
*/
controller_install(view_install* view, session_manager* sesion);
private:
view_install *vis;
session_manager *sesi;
/**
* @brief add_controlers
* Add controlers to the bottons
*/
void add_controlers();
/**
* @brief on_button_clicked
* Button function
*/
void on_button_clicked();
};
#endif // CONTROLADOR_H