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

@@ -7,13 +7,37 @@
class controller_info
{
public:
/**
* @brief controller_info
* View controler that expose package information
* @param view View to controle
* @param sesion Model to have the funcionality
*/
controller_info(view_info *view, session_manager *sesion);
private:
view_info *view;
session_manager *sesion;
/**
* @brief load_info
* Load the info in the table
*/
void load_info();
/**
* @brief get_first
* Get the firs string until the special character ":"
* @param info String to divide, the string have substract the string returned, and the first ":"
* @return The string substracted
*/
std::string get_first(std::string &info);
/**
* @brief on_button_clicked
* Button function
*/
void on_button_clicked();
/**
* @brief add_controlers
* Add controlers to the bottons
*/
void add_controlers();
};