forked from boostorg/mqtt5
Summary: related to T13767 T13767 Reviewers: ivica Reviewed By: ivica Subscribers: miljen, iljazovic Differential Revision: https://repo.mireo.local/D29686
18 lines
495 B
C++
18 lines
495 B
C++
//
|
|
// Copyright (c) 2023-2024 Ivica Siladic, Bruno Iljazovic, Korina Simicevic
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef ASYNC_MQTT5_HPP
|
|
#define ASYNC_MQTT5_HPP
|
|
|
|
#include <async_mqtt5/error.hpp>
|
|
#include <async_mqtt5/mqtt_client.hpp>
|
|
#include <async_mqtt5/property_types.hpp>
|
|
#include <async_mqtt5/reason_codes.hpp>
|
|
#include <async_mqtt5/types.hpp>
|
|
|
|
#endif // !ASYNC_MQTT5_HPP
|