async_mqtt 9.0.1
Loading...
Searching...
No Matches
client_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_CLIENT_FWD_HPP)
8#define ASYNC_MQTT_CLIENT_FWD_HPP
9
10#include <cstddef> // for std::size_t
11
12#include <async_mqtt/role.hpp>
13#include <async_mqtt/protocol_version.hpp>
14
15namespace async_mqtt {
16
81template <protocol_version Version, typename NextLayer>
82class client;
83
84} // namespace async_mqtt
85
86#endif // ASYNC_MQTT_CLIENT_FWD_HPP
MQTT client for casual usecases.
Definition client_fwd.hpp:82