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