add doxygen
This commit is contained in:
@@ -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();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user