From 1a8ec165031af3b860028ef1b360acc8e7baf9e6 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Thu, 21 Sep 2017 23:32:46 +0000 Subject: Rebuilding documentation --- editor/editorwindow.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 editor/editorwindow.cpp (limited to 'editor/editorwindow.cpp') 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() +{ +} -- cgit