functiontestwindow.h
677 Bytes
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
33
34
35
36
37
38
#ifndef FUNCTIONTESTWINDOW_H
#define FUNCTIONTESTWINDOW_H
#include <QMainWindow>
#include "udphandler.h"
namespace Ui {
class FunctionTestWindow;
}
class FunctionTestWindow : public QMainWindow
{
Q_OBJECT
public:
explicit FunctionTestWindow(QWidget *parent = 0, UdpHandler *udp = 0);
~FunctionTestWindow();
private slots:
void on_burnerTestButton_clicked();
void on_componentTestButton_clicked();
void on_valveTestButton_clicked();
void on_washTestButton_clicked();
void on_fanTestButton_clicked();
void on_gasTestButton_clicked();
private:
Ui::FunctionTestWindow *ui;
UdpHandler *udp;
};
#endif // FUNCTIONTESTWINDOW_H