mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
14 lines
175 B
C++
14 lines
175 B
C++
#pragma once
|
|
|
|
#include "mqtt_puback.hpp"
|
|
|
|
namespace acl {
|
|
|
|
class mqtt_pubcomp : public mqtt_puback {
|
|
public:
|
|
mqtt_pubcomp(void);
|
|
~mqtt_pubcomp(void);
|
|
};
|
|
|
|
} // namespace acl
|