summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.h')
-rwxr-xr-xsrc/mainwindow.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
new file mode 100755
index 0000000..ac827b0
--- /dev/null
+++ b/src/mainwindow.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <QMainWindow>
+#include "glwidget.h"
+
+class MainWindow : public QWidget
+{
+ Q_OBJECT
+
+public:
+ MainWindow();
+ ~MainWindow();
+
+private:
+ GLWidget *glWidget;
+};