async_mqtt 4.1.0
Loading...
Searching...
No Matches
type.hpp
1// Copyright Takatoshi Kondo 2020
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_TYPE_HPP)
8#define ASYNC_MQTT_TYPE_HPP
9
10#include <cstdint>
11
12namespace async_mqtt {
13
14using session_expiry_interval_t = std::uint32_t;
15using topic_alias_t = std::uint16_t;
16using receive_maximum_t = std::uint16_t;
17
18} // namespace async_mqtt
19
20#endif // ASYNC_MQTT_TYPE_HPP