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

@@ -12,6 +12,12 @@
class dialog_add_user : public Gtk::Dialog
{
public:
/**
* @brief dialog_add_user
* Dialog to add users
* @param win Window to stop
* @param sesion Model to implement te funcionality
*/
dialog_add_user(Gtk::Window *win, session_manager *sesion);
private:
session_manager *sesion;
@@ -29,8 +35,15 @@ private:
Gtk::CheckButton c_admin;
Gtk::Button b_add;
/**
* @brief on_button_clicked
* Button function
*/
void on_button_clicked();
/**
* @brief add_elements
* Add controlers to the bottons
*/
void add_elements();
};