add doxygen

This commit is contained in:
2020-06-01 23:24:24 +02:00
parent f3a0bfed40
commit af365474a7
15 changed files with 241 additions and 10 deletions

View File

@@ -6,11 +6,25 @@
class controller_install
{
public:
controller_install(view_install*, session_manager*);
/**
* @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();
};