MessagePack for C++
int_decl.hpp
Go to the documentation of this file.
1 //
2 // MessagePack for C++ static resolution routine
3 //
4 // Copyright (C) 2016 FURUHASHI Sadayuki and 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_V2_TYPE_INT_DECL_HPP
11 #define MSGPACK_V2_TYPE_INT_DECL_HPP
12 
14 
15 namespace msgpack {
16 
20 
21 namespace type {
22 namespace detail {
23 
24 
25 template <typename T, bool Signed>
26 struct convert_integer_sign;
27 
28 template <typename T>
29 struct is_signed;
30 
31 
32 template <bool Signed>
33 struct object_sign;
34 
35 //using v1::type::detail::convert_integer_sign;
36 
37 //using v1::type::detail::is_signed;
38 
40 
41 //using v1::type::detail::object_char_sign;
42 
44 
45 } // namespace detail
46 } // namespace type
47 
49 } // MSGPACK_API_VERSION_NAMESPACE(v2)
51 
52 } // namespace msgpack
53 
54 #endif // MSGPACK_V2_TYPE_INT_DECL_HPP
void object_char(msgpack::object &o, T v)
Definition: int.hpp:91
T convert_integer(msgpack::object const &o)
Definition: int.hpp:61
Definition: adaptor_base.hpp:15
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition: versioning.hpp:66