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