aboutsummaryrefslogtreecommitdiff
path: root/mainwindow.cpp
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-02-02 22:12:45 -0500
committerAlee <Alee14498@gmail.com>2019-02-02 22:12:45 -0500
commitb4c3a2088b8ecdeb33e3b21211357f67a5d79243 (patch)
tree361780e3bf79dab14a873002c2808c3196240e16 /mainwindow.cpp
downloadProject-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.tar.gz
Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.tar.bz2
Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.zip
Initial Commit (New branch)
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;
+}