init branch 2
This commit is contained in:
parent
2801671ced
commit
74f117db69
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
|
Loading…
Reference in a new issue