summaryrefslogtreecommitdiff
path: root/tikzit/mainwindow.cpp
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-01-11 17:31:47 +0100
committerAleks Kissinger <aleks0@gmail.com>2017-01-11 17:31:47 +0100
commitdd95fa3ce7a94c1fce9e084071af4031b2bd50e9 (patch)
tree3a3c57c626f00f19021a0eacf27f2f1535becd90 /tikzit/mainwindow.cpp
parent1802977b95d29198f27535b1b731d1180c083667 (diff)
boilerplate
Diffstat (limited to 'tikzit/mainwindow.cpp')
-rw-r--r--tikzit/mainwindow.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tikzit/mainwindow.cpp b/tikzit/mainwindow.cpp
new file mode 100644
index 0000000..49d64fc
--- /dev/null
+++ b/tikzit/mainwindow.cpp
@@ -0,0 +1,14 @@
+#include "mainwindow.h"
+#include "ui_mainwindow.h"
+
+MainWindow::MainWindow(QWidget *parent) :
+ QMainWindow(parent),
+ ui(new Ui::MainWindow)
+{
+ ui->setupUi(this);
+}
+
+MainWindow::~MainWindow()
+{
+ delete ui;
+}