Splitt PowerOff into own class

Add inital AlarmSettingsDialog (not used so far)
This commit is contained in:
IMback
2017-11-19 19:12:09 +01:00
parent 2c46e6ffb6
commit a82a9459bc
7 changed files with 132 additions and 0 deletions

17
power.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef POWER_H
#define POWER_H
#include <QObject>
class Power : public QObject
{
Q_OBJECT
public:
explicit Power(QObject *parent = nullptr);
signals:
public slots:
};
#endif // POWER_H