acl  3.5.3.0
mqtt_pubrec.hpp
浏览该文件的文档.
1 #pragma once
2 
3 #include "mqtt_ack.hpp"
4 
5 namespace acl {
6 
7 /**
8  * mqtt message object for MQTT_PUBREC type.
9  */
11 public:
12  /**
13  * constructor for creating MQTT_PUBREC mqtt message object.
14  * @see mqtt_ack
15  */
16  mqtt_pubrec(void);
17 
18  /**
19  * constructor for creating MQTT_PUBREC mqtt message object.
20  * @see mqtt_ack
21  */
22  mqtt_pubrec(const mqtt_header& header);
23 
24  ~mqtt_pubrec(void);
25 };
26 
27 } // namespace acl
#define ACL_CPP_API