diff options
Diffstat (limited to 'qmpchanneleditor.hpp')
-rw-r--r-- | qmpchanneleditor.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qmpchanneleditor.hpp b/qmpchanneleditor.hpp new file mode 100644 index 0000000..cef3b0b --- /dev/null +++ b/qmpchanneleditor.hpp @@ -0,0 +1,22 @@ +#ifndef QMPCHANNELEDITOR_HPP +#define QMPCHANNELEDITOR_HPP + +#include <QDialog> + +namespace Ui { + class qmpchanneleditor; +} + +class qmpchanneleditor : public QDialog +{ + Q_OBJECT + + public: + explicit qmpchanneleditor(QWidget *parent = 0); + ~qmpchanneleditor(); + + private: + Ui::qmpchanneleditor *ui; +}; + +#endif // QMPCHANNELEDITOR_HPP |