mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-01-26 16:49:11 +03:00
19 lines
410 B
C++
19 lines
410 B
C++
#pragma once
|
|
|
|
#include "OutPacket.hpp"
|
|
#include "../../Flags.hpp"
|
|
#include "../../Helpers.hpp"
|
|
#include "../../Storage.hpp"
|
|
|
|
namespace AsyncMqttClientInternals {
|
|
class PubAckOutPacket : public OutPacket {
|
|
public:
|
|
explicit PubAckOutPacket(PendingAck pendingAck);
|
|
const uint8_t* data(size_t index = 0) const;
|
|
size_t size() const;
|
|
|
|
private:
|
|
uint8_t _data[4];
|
|
};
|
|
} // namespace AsyncMqttClientInternals
|