Added information about packages installed

This commit is contained in:
2020-05-19 20:34:51 +02:00
parent 9eb45f329a
commit 4fc3d964ce
17 changed files with 202 additions and 20 deletions

18
controller_remove.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef CONTROLLER_REMOVE_H
#define CONTROLLER_REMOVE_H
#include "view_remove.h"
#include "session_manager.h"
class controller_remove
{
public:
controller_remove(view_remove *view, session_manager *session);
private:
view_remove *view;
session_manager *session;
void add_controlers();
void on_button_clicked();
};
#endif // CONTROLLER_REMOVE_H