Changes: changed UI, walking speed, time format
[ptas] / zouba / ui.h
1 #ifndef UI_H
2 #define UI_H
3
4 class QMainWindow;
5 class QWidget;
6 class QPushButton;
7 class QTableWidget;
8
9 class Ui
10 {
11 public:
12   Ui();
13   ~Ui();
14   void setupUi( QMainWindow *mainWindow );
15
16   QWidget *centralWidget;
17   QPushButton *trigger;
18   QTableWidget *table;
19 };
20 #endif //UI_H