bonus-edge-proxy/src/mqtt/handler/command_handler.h

10 lines
240 B
C
Raw Normal View History

2025-10-13 13:55:15 +08:00
#pragma once
#include "../mqtt_client.h" // 注意 #include 路径的变化
class CommandHandler {
public:
explicit CommandHandler(MqttClient& client);
void handle(mqtt::const_message_ptr msg);
private:
MqttClient& m_client;
};