26 lines
409 B
C++
26 lines
409 B
C++
#ifndef P08_ALARMPAGE_H
|
|
#define P08_ALARMPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class P08_AlarmPage;
|
|
}
|
|
|
|
class P08_AlarmPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit P08_AlarmPage(QWidget *parent = nullptr);
|
|
~P08_AlarmPage();
|
|
void WinInit();
|
|
private slots:
|
|
void UIRefreshTimeOut();
|
|
private:
|
|
Ui::P08_AlarmPage *ui;
|
|
uint16_t m_oldAlarmCode = 0;
|
|
};
|
|
|
|
#endif // P08_ALARMPAGE_H
|