1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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