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