aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editorwindow.h')
-rw-r--r--editor/editorwindow.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/editor/editorwindow.h b/editor/editorwindow.h
new file mode 100644
index 00000000..1e3e8045
--- /dev/null
+++ b/editor/editorwindow.h
@@ -0,0 +1,25 @@
+#ifndef EDITORWINDOW_H
+#define EDITORWINDOW_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class EditorWindow;
+}
+
+class EditorWindow : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ explicit EditorWindow(QWidget *parent = 0);
+ ~EditorWindow();
+
+private slots:
+ void on_openGLWidget_destroyed();
+
+private:
+ Ui::EditorWindow *ui;
+};
+
+#endif // EDITORWINDOW_H