MessagePack for C++
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_V1_META_DECL_HPP
12 #define MSGPACK_V1_META_DECL_HPP
13 
14 #if !defined(MSGPACK_USE_CPP03)
15 
16 #include "msgpack/versioning.hpp"
17 #include <type_traits>
18 
19 namespace msgpack {
20 
24 
25 namespace detail {
26 
27 template<bool...> struct bool_pack;
28 
29 template<bool...values> struct all_of_imp;
30 
31 } // namespace detail
32 
33 template<template <class> class T, class... U>
35 
36 template<std::size_t... Is> struct seq;
37 
38 template<std::size_t N, std::size_t... Is>
39 struct gen_seq;
40 
41 template <typename T>
43 
45 } // MSGPACK_API_VERSION_NAMESPACE(v1)
47 
48 } // namespace msgpack
49 
50 #endif // !defined(MSGPACK_USE_CPP03)
51 
52 #endif // MSGPACK_V1_META_DECL_HPP
Definition: meta_decl.hpp:27
Definition: adaptor_base.hpp:15
Definition: meta.hpp:31
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition: versioning.hpp:58
Definition: meta.hpp:26
Definition: meta_decl.hpp:42
Definition: meta.hpp:34