mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-11 15:48:21 +00:00
17 lines
No EOL
558 B
C++
17 lines
No EOL
558 B
C++
#ifndef REQUESTALLCONFIGPARAM_H
|
|
#define REQUESTALLCONFIGPARAM_H
|
|
|
|
#include "mqttcommands/mqttcommands.h"
|
|
|
|
class MqttCommand_RequestAllConfigParam : public MqttCommand {
|
|
Q_OBJECT
|
|
public:
|
|
static MqttCommand *Create(QObject *parent = nullptr);
|
|
static QString StaticGetCommand() { return "RequestAllConfigParam";};
|
|
QString GetCommand() override { return StaticGetCommand(); };
|
|
bool processMessage(rapidjson::Document &) override;
|
|
private:
|
|
MqttCommand_RequestAllConfigParam(QObject *parent = nullptr);
|
|
};
|
|
|
|
#endif // REQUESTALLCONFIGPARAM_H
|