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