mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 17:00:52 +08:00
16 lines
211 B
C++
16 lines
211 B
C++
|
#pragma once
|
||
|
|
||
|
#include "mqtt_message.hpp"
|
||
|
|
||
|
namespace acl {
|
||
|
|
||
|
class mqtt_pingresp : public mqtt_message {
|
||
|
public:
|
||
|
mqtt_pingresp(void);
|
||
|
~mqtt_pingresp(void);
|
||
|
|
||
|
bool to_string(string& out);
|
||
|
};
|
||
|
|
||
|
} // namespace acl
|