comparison msgpack/include/msgpack/v2/adaptor/int_decl.hpp @ 25:9298566b4708

msgpack: import 2.0.0
author David Demelier <markand@malikania.fr>
date Thu, 24 Nov 2016 17:35:14 +0100
parents
children
comparison
equal deleted inserted replaced
24:067b78703c19 25:9298566b4708
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
13 #include "msgpack/v1/adaptor/int_decl.hpp"
14
15 namespace msgpack {
16
17 /// @cond
18 MSGPACK_API_VERSION_NAMESPACE(v2){
19 /// @endcond
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_char_sign;
34
35 //using v1::type::detail::convert_integer_sign;
36
37 //using v1::type::detail::is_signed;
38
39 using v1::type::detail::convert_integer;
40
41 //using v1::type::detail::object_char_sign;
42
43 using v1::type::detail::object_char;
44
45 } // namespace detail
46 } // namespace type
47
48 /// @cond
49 } // MSGPACK_API_VERSION_NAMESPACE(v2)
50 /// @endcond
51
52 } // namespace msgpack
53
54 #endif // MSGPACK_V2_TYPE_INT_DECL_HPP