15 lines
264 B
C++
15 lines
264 B
C++
#include "P15_ParameterPage.h"
|
|
#include "ui_P15_ParameterPage.h"
|
|
|
|
P15_ParameterPage::P15_ParameterPage(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::P15_ParameterPage)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
P15_ParameterPage::~P15_ParameterPage()
|
|
{
|
|
delete ui;
|
|
}
|