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