gazetk / GazeTkHub / Hub / src / mainwindow.h @ 2eb54f9d
History | View | Annotate | Download (318 Bytes)
1 |
#ifndef MAINWINDOW_H
|
---|---|
2 |
#define MAINWINDOW_H
|
3 |
|
4 |
#include <QGenericPlugin> |
5 |
#include <QMainWindow> |
6 |
|
7 |
|
8 |
namespace Ui { |
9 |
class MainWindow; |
10 |
} |
11 |
|
12 |
class MainWindow : public QMainWindow |
13 |
{ |
14 |
Q_OBJECT |
15 |
|
16 |
public: |
17 |
explicit MainWindow(QWidget *parent = 0);
|
18 |
~MainWindow(); |
19 |
|
20 |
private:
|
21 |
Ui::MainWindow *ui; |
22 |
}; |
23 |
|
24 |
#endif // MAINWINDOW_H |