-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhilointerfaz.h
32 lines (29 loc) · 847 Bytes
/
hilointerfaz.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef HILOINTERFAZ_H
#define HILOINTERFAZ_H
#include "prototipos.h"
#include "ventanaprincipal.h"
class HiloInterfaz : public QThread
{
Q_OBJECT
public:
bool pause;
bool stop;
Simulacion* simulacion;
VentanaPrincipal* ventanaPrincipal;
QMutex mute;
HiloInterfaz(QObject* parent = 0, Simulacion* pSimulacion = 0, VentanaPrincipal* pVentanaPrincipal=0);
void run();
signals:
void actualizarAlmacenPrima(QStringList mensaje);
void actualizarVentanaCarrito(QStringList mensaje);
void actualizarMezcladoras();
void actualizarBandas();
void actualizarEnsambladora();
void actualizarHorno();
void actualizarBandejas();
void actualizarInspectores();
void actualizarEmpacadora();
void actualizarCarritosSalida();
void actualizarAlmacenTerminal();
};
#endif // HILOINTERFAZ_H