MessagePack for C++
Loading...
Searching...
No Matches
type.hpp
Go to the documentation of this file.
1#include "cpp_config.hpp"
2#include "adaptor/array_ref.hpp"
3#include "adaptor/bool.hpp"
4#include "adaptor/carray.hpp"
5#include "adaptor/char_ptr.hpp"
6#include "adaptor/deque.hpp"
7#include "adaptor/ext.hpp"
8#include "adaptor/fixint.hpp"
9#include "adaptor/float.hpp"
10#include "adaptor/int.hpp"
11#include "adaptor/complex.hpp"
12#include "adaptor/list.hpp"
13#include "adaptor/map.hpp"
14#include "adaptor/nil.hpp"
15#include "adaptor/pair.hpp"
16#include "adaptor/raw.hpp"
17#include "adaptor/v4raw.hpp"
18#include "adaptor/set.hpp"
19#include "adaptor/size_equal_only.hpp"
20#include "adaptor/string.hpp"
21#include "adaptor/vector.hpp"
22#include "adaptor/vector_bool.hpp"
23#include "adaptor/vector_char.hpp"
24#include "adaptor/vector_unsigned_char.hpp"
25#include "adaptor/wstring.hpp"
26#include "adaptor/msgpack_tuple.hpp"
27#include "adaptor/define.hpp"
28
29#if defined(MSGPACK_USE_CPP03)
30
31#include "adaptor/tr1/unordered_map.hpp"
32#include "adaptor/tr1/unordered_set.hpp"
33
34#else // defined(MSGPACK_USE_CPP03)
35
36#include "adaptor/cpp11/array.hpp"
37#include "adaptor/cpp11/array_char.hpp"
38#include "adaptor/cpp11/array_unsigned_char.hpp"
39
40#include "adaptor/cpp11/chrono.hpp"
41
42#include "adaptor/cpp11/forward_list.hpp"
43#include "adaptor/cpp11/reference_wrapper.hpp"
44#include "adaptor/cpp11/shared_ptr.hpp"
45#include "adaptor/cpp11/timespec.hpp"
46#include "adaptor/cpp11/tuple.hpp"
47#include "adaptor/cpp11/unique_ptr.hpp"
48#include "adaptor/cpp11/unordered_map.hpp"
49#include "adaptor/cpp11/unordered_set.hpp"
50
51#if MSGPACK_HAS_INCLUDE(<optional>)
52#include "adaptor/cpp17/optional.hpp"
53#endif // MSGPACK_HAS_INCLUDE(<optional>)
54
55#if MSGPACK_HAS_INCLUDE(<string_view>)
56#include "adaptor/cpp17/string_view.hpp"
57#endif // MSGPACK_HAS_INCLUDE(<string_view>)
58
59#include "adaptor/cpp17/array_byte.hpp"
60#include "adaptor/cpp17/byte.hpp"
61#include "adaptor/cpp17/carray_byte.hpp"
62#include "adaptor/cpp17/vector_byte.hpp"
63
64#if MSGPACK_HAS_INCLUDE(<variant>)
65#include "adaptor/cpp17/variant.hpp"
66#endif // MSGPACK_HAS_INCLUDE(<variant>)
67
68#if MSGPACK_HAS_INCLUDE(<span>)
69#include "adaptor/cpp20/span.hpp"
70#endif // MSGPACK_HAS_INCLUDE(<span>)
71
72#endif // defined(MSGPACK_USE_CPP03)
73
74#if !defined(MSGPACK_NO_BOOST)
75#include "adaptor/boost/fusion.hpp"
76
77#if !defined(MSGPACK_USE_CPP03)
78#include "adaptor/boost/msgpack_variant.hpp"
79#endif // !defined(MSGPACK_USE_CPP03)
80
81#include "adaptor/boost/optional.hpp"
82#include "adaptor/boost/string_ref.hpp"
83#include "adaptor/boost/string_view.hpp"
84#endif // !defined(MSGPACK_NO_BOOST)