acl/lib_acl_cpp/include/acl_cpp/mqtt/mqtt_pingresp.hpp

24 lines
356 B
C++
Raw Normal View History

#pragma once
#include "mqtt_message.hpp"
namespace acl {
2021-03-07 12:45:22 +08:00
class ACL_CPP_API mqtt_pingresp : public mqtt_message {
public:
mqtt_pingresp(void);
2021-03-08 15:03:32 +08:00
mqtt_pingresp(const mqtt_header& header);
~mqtt_pingresp(void);
protected:
// @override
bool to_string(string& out);
// @override
bool is_finished(void) const {
return true;
}
};
} // namespace acl