MessagePack for C++
msgpack_variant_decl.hpp
Go to the documentation of this file.
1 //
2 // MessagePack for C++ static resolution routine
3 //
4 // Copyright (C) 2016 KONDO Takatoshi
5 //
6 // Distributed under the Boost Software License, Version 1.0.
7 // (See accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt)
9 //
10 #ifndef MSGPACK_V3_TYPE_BOOST_MSGPACK_VARIANT_DECL_HPP
11 #define MSGPACK_V3_TYPE_BOOST_MSGPACK_VARIANT_DECL_HPP
12 
13 #if defined(MSGPACK_USE_BOOST)
14 
16 
17 namespace msgpack {
18 
22 
23 namespace type {
24 
25 using v2::type::basic_variant;
26 using v2::type::variant;
27 using v2::type::variant_ref;
28 
29 using v2::type::operator<;
30 
31 using v2::type::operator==;
32 
33 } // namespace type
34 
36 } // MSGPACK_API_VERSION_NAMESPACE(v3)
38 
39 } // namespace msgpack
40 
41 #endif // MSGPACK_USE_BOOST
42 #endif // MSGPACK_V3_TYPE_BOOST_MSGPACK_VARIANT_DECL_HPP
Definition: adaptor_base.hpp:15
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition: versioning.hpp:58