MessagePack for C++
Loading...
Searching...
No Matches
meta_decl.hpp
Go to the documentation of this file.
1//
2// MessagePack for C++ static resolution routine
3//
4// Copyright (C) 2015-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
11#ifndef MSGPACK_V2_META_DECL_HPP
12#define MSGPACK_V2_META_DECL_HPP
13
14#if !defined(MSGPACK_USE_CPP03)
15
17
18namespace msgpack {
19
23
24namespace detail {
25
26using v1::detail::bool_pack;
27
28using v1::detail::all_of_imp;
29
30using v1::detail::any_of_imp;
31
32} // namespace detail
33
34using v1::all_of;
35
36using v1::any_of;
37
38using v1::seq;
39
40using v1::gen_seq;
41
43} // MSGPACK_API_VERSION_NAMESPACE(v2)
45
46} // namespace msgpack
47
48#endif // !defined(MSGPACK_USE_CPP03)
49
50#endif // MSGPACK_V2_META_DECL_HPP
Definition adaptor_base.hpp:15
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition versioning.hpp:66