summaryrefslogtreecommitdiff
path: root/seentl.cpp
diff options
context:
space:
mode:
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;
+}