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