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