first commit, base client with gtk3
This commit is contained in:
16
controlador.h
Normal file
16
controlador.h
Normal 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
|
||||
Reference in New Issue
Block a user