-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathmqtt_client_cpp.hpp
28 lines (27 loc) · 960 Bytes
/
mqtt_client_cpp.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright Takatoshi Kondo 2015
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <mqtt/config.hpp> // should be top to configure boost::variant limit
#include <mqtt/client.hpp>
#include <mqtt/sync_client.hpp>
#include <mqtt/async_client.hpp>
#include <mqtt/connect_flags.hpp>
#include <mqtt/connect_return_code.hpp>
#include <mqtt/control_packet_type.hpp>
#include <mqtt/exception.hpp>
#include <mqtt/fixed_header.hpp>
#include <mqtt/hexdump.hpp>
#include <mqtt/log.hpp>
#include <mqtt/publish.hpp>
#include <mqtt/setup_log.hpp>
#include <mqtt/subscribe_options.hpp>
#include <mqtt/remaining_length.hpp>
#include <mqtt/reason_code.hpp>
#include <mqtt/session_present.hpp>
#include <mqtt/unique_scope_guard.hpp>
#include <mqtt/utf8encoded_strings.hpp>
#include <mqtt/variant.hpp>
#include <mqtt/visitor_util.hpp>
#include <mqtt/will.hpp>