summaryrefslogtreecommitdiffstats
path: root/mainwindow.cpp
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-08-31 14:36:19 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-08-31 14:36:19 +0200
commit95dfd961638964445db9af1fb4de59b170ce9a16 (patch)
tree56ee9fa8d4e08e5cf22a85b5cf5ad3ae033f6ea2 /mainwindow.cpp
downloadsrc-95dfd961638964445db9af1fb4de59b170ce9a16.tar.gz
src-95dfd961638964445db9af1fb4de59b170ce9a16.zip
Trage erste Version der Dokumentation ein
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r--mainwindow.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
new file mode 100644
index 0000000..49d64fc
--- /dev/null
+++ b/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;
+}