aboutsummaryrefslogtreecommitdiff
path: root/src/gatscon/mainwnd.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/gatscon/mainwnd.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/gatscon/mainwnd.h b/src/gatscon/mainwnd.h
new file mode 100644
index 0000000..8f638d8
--- /dev/null
+++ b/src/gatscon/mainwnd.h
@@ -0,0 +1,20 @@
1#ifndef MAIN_WND_H
2#define MAIN_WND_H
3
4#include "ui_mainwnd.h"
5
6class MainWnd : public QMainWindow, protected Ui::MainWnd
7{
8 Q_OBJECT;
9public:
10 MainWnd();
11 virtual ~MainWnd();
12
13public slots:
14 void connect();
15 void proxy();
16 void open();
17
18};
19
20#endif