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

14 lines
166 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-04 17:37:28 +08:00
class 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);
~mqtt_puback(void);
2021-03-02 16:39:06 +08:00
};
} // namespace acl