aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editorwindow.cpp')
-rw-r--r--editor/editorwindow.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/editor/editorwindow.cpp b/editor/editorwindow.cpp
new file mode 100644
index 00000000..35eeeb31
--- /dev/null
+++ b/editor/editorwindow.cpp
@@ -0,0 +1,18 @@
+#include "editorwindow.h"
+#include "ui_editorwindow.h"
+
+EditorWindow::EditorWindow(QWidget *parent) :
+ QMainWindow(parent),
+ ui(new Ui::EditorWindow)
+{
+ ui->setupUi(this);
+}
+
+EditorWindow::~EditorWindow()
+{
+ delete ui;
+}
+
+void EditorWindow::on_openGLWidget_destroyed()
+{
+}