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