diff options
author | Chris Xiong <chirs241097@gmail.com> | 2015-12-29 23:54:24 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2015-12-29 23:54:24 +0800 |
commit | 8dc90ae27c24aec1851215f2cc28ee24eff01ea5 (patch) | |
tree | 13a604bf55804960ced6ec7559f626962a1265bd /qmpchanneleditor.cpp | |
parent | 40ea6580aaf3d19aa77f43551185a55013d216d9 (diff) | |
download | QMidiPlayer-8dc90ae27c24aec1851215f2cc28ee24eff01ea5.tar.xz |
Master Spark. (WTF)
Diffstat (limited to 'qmpchanneleditor.cpp')
-rw-r--r-- | qmpchanneleditor.cpp | 14 |
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; +} |