Files
EJM_Display/Pages/P08_AlarmPage.cpp

15 lines
236 B
C++
Raw Normal View History

2025-08-20 23:06:28 +08:00
#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;
}