init branch 2
This commit is contained in:
28
alarmactions.h
Normal file
28
alarmactions.h
Normal file
@ -0,0 +1,28 @@
|
||||
#ifndef POWER_H
|
||||
#define POWER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QSettings>
|
||||
#include "microcontroller.h"
|
||||
|
||||
class AlarmActions : public QObject
|
||||
{
|
||||
private:
|
||||
Q_OBJECT
|
||||
Microcontroller* _micro;
|
||||
QSettings* _settings;
|
||||
|
||||
public:
|
||||
explicit AlarmActions(QSettings* settings, Microcontroller* micro, QObject *parent = nullptr);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
void syncoff();
|
||||
|
||||
void Alarm();
|
||||
|
||||
};
|
||||
|
||||
#endif // POWER_H
|
Reference in New Issue
Block a user