async_mqtt 9.0.1
Loading...
Searching...
No Matches
endpoint_fwd.hpp
1// Copyright Takatoshi Kondo 2022
2//
3// Distributed under the Boost Software License, Version 1.0.
4// (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6
7#if !defined(ASYNC_MQTT_ENDPOINT_FWD_HPP)
8#define ASYNC_MQTT_ENDPOINT_FWD_HPP
9
10#include <cstddef> // for std::size_t
11
12#include <async_mqtt/role.hpp>
13
14namespace async_mqtt {
15
31template <role Role, std::size_t PacketIdBytes, typename NextLayer>
33
50template <role Role, typename NextLayer>
52
53} // namespace async_mqtt
54
55#endif // ASYNC_MQTT_ENDPOINT_FWD_HPP
MQTT endpoint corresponding to the connection.
Definition endpoint_fwd.hpp:32