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