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

15 lines
219 B
C++
Raw Normal View History

2021-03-02 16:39:06 +08:00
#pragma once
2021-03-04 17:37:28 +08:00
#include "mqtt_ack.hpp"
2021-03-02 16:39:06 +08:00
namespace acl {
2021-03-07 12:45:22 +08:00
class ACL_CPP_API mqtt_puback : public mqtt_ack {
2021-03-02 16:39:06 +08:00
public:
2021-03-04 17:37:28 +08:00
mqtt_puback(void);
2021-03-08 15:03:32 +08:00
mqtt_puback(const mqtt_header& header);
2021-03-04 17:37:28 +08:00
~mqtt_puback(void);
2021-03-02 16:39:06 +08:00
};
} // namespace acl