summaryrefslogtreecommitdiff
path: root/seentl.cpp
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-02-02 14:16:09 +0100
committerYorhel <git@yorhel.nl>2009-02-02 14:16:09 +0100
commit1c4fa45b62fe5a5026597e164cd0ec48c309e69c (patch)
tree41a3938c8092df3651d713a246e10e8441e2f0d2 /seentl.cpp
Initial commit - empty Qt Creator project
Diffstat (limited to 'seentl.cpp')
-rw-r--r--seentl.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/seentl.cpp b/seentl.cpp
new file mode 100644
index 0000000..08ddbab
--- /dev/null
+++ b/seentl.cpp
@@ -0,0 +1,13 @@
+#include "seentl.h"
+#include "ui_seentl.h"
+
+SEENTL::SEENTL(QWidget *parent)
+ : QMainWindow(parent), ui(new Ui::SEENTLClass)
+{
+ ui->setupUi(this);
+}
+
+SEENTL::~SEENTL()
+{
+ delete ui;
+}