Add a bunch of Manager Methods for MQTT Commands

This commit is contained in:
Justin Hammond 2019-11-03 19:02:51 +08:00
parent ea376a48cd
commit 6a088c931b
67 changed files with 1272 additions and 13 deletions

View 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