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