MessagePack for C++
Loading...
Searching...
No Matches
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
15namespace msgpack {
16
20
21namespace type {
22namespace detail {
23
24
25template <typename T, bool Signed>
26struct convert_integer_sign;
27
28template <typename T>
29struct is_signed;
30
31
32template <bool Signed>
33struct object_sign;
34
35//using v1::type::detail::convert_integer_sign;
36
37//using v1::type::detail::is_signed;
38
39using v1::type::detail::convert_integer;
40
41//using v1::type::detail::object_char_sign;
42
43using v1::type::detail::object_char;
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
Definition adaptor_base.hpp:15
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition versioning.hpp:66