first commit, base client with gtk3

This commit is contained in:
2020-05-08 12:42:02 +02:00
commit f9cdde7008
17 changed files with 777 additions and 0 deletions

16
controlador.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef CONTROLADOR_H
#define CONTROLADOR_H
#include "vista.h"
#include "conexion.h"
class controlador
{
public:
controlador(vista*, conexion*);
private:
vista *vis;
conexion *con;
void add_controlers();
void on_button_clicked();
};
#endif // CONTROLADOR_H