blob: 287d3f1bac732cf8b2ea3e605e946b8cfe285adc (
plain) (
tree)
|
|
#include "qmpchanneleditor.hpp"
#include "ui_qmpchanneleditor.h"
qmpchanneleditor::qmpchanneleditor(QWidget *parent) :
QDialog(parent),
ui(new Ui::qmpchanneleditor)
{
ui->setupUi(this);
}
qmpchanneleditor::~qmpchanneleditor()
{
delete ui;
}
|