mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-12 08:08:21 +00:00
Add a bunch of Manager Methods for MQTT Commands
This commit is contained in:
parent
ea376a48cd
commit
6a088c931b
67 changed files with 1272 additions and 13 deletions
17
qt-ozwdaemon/mqttcommands/hardResetController.h
Normal file
17
qt-ozwdaemon/mqttcommands/hardResetController.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef HARDRESETCONTROLLER_H
|
||||
#define HARDRESETCONTROLLER_H
|
||||
|
||||
#include "mqttcommands/mqttcommands.h"
|
||||
|
||||
class MqttCommand_HardResetController : public MqttCommand {
|
||||
Q_OBJECT
|
||||
public:
|
||||
static MqttCommand *Create(QObject *parent = nullptr);
|
||||
static QString StaticGetCommand() { return "HardResetController";};
|
||||
QString GetCommand() override { return StaticGetCommand(); };
|
||||
bool processMessage(QJsonDocument) override;
|
||||
private:
|
||||
MqttCommand_HardResetController(QObject *parent = nullptr);
|
||||
};
|
||||
|
||||
#endif // HARDRESETCONTROLLER_H
|
Loading…
Add table
Add a link
Reference in a new issue