summaryrefslogtreecommitdiff
path: root/etcexp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'etcexp.cpp')
-rw-r--r--etcexp.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/etcexp.cpp b/etcexp.cpp
new file mode 100644
index 0000000..4de12fe
--- /dev/null
+++ b/etcexp.cpp
@@ -0,0 +1,14 @@
+#include "etcexp.h"
+#include "ui_etcexp.h"
+
+EtcExp::EtcExp(QWidget *parent) :
+ QWidget(parent),
+ ui(new Ui::EtcExp)
+{
+ ui->setupUi(this);
+}
+
+EtcExp::~EtcExp()
+{
+ delete ui;
+}