MessagePack for C++
Loading...
Searching...
No Matches
object_decl.hpp
Go to the documentation of this file.
1//
2// MessagePack for C++ static resolution routine
3//
4// Copyright (C) 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#ifndef MSGPACK_V2_OBJECT_DECL_HPP
11#define MSGPACK_V2_OBJECT_DECL_HPP
12
15
16namespace msgpack {
17
21
22using v1::object_handle;
23
24namespace detail {
25
26using v1::detail::add_ext_type_size;
27
28} // namespace detail
29
30using v1::aligned_zone_size;
31
32using v1::clone;
33
34namespace detail {
35
36using v1::detail::packer_serializer;
37
38} // namespace detail
39
40using v1::object_parser;
41using v1::object_pack_visitor;
42using v1::object_stringize_visitor;
43
44using v1::operator==;
45using v1::operator!=;
46
48} // MSGPACK_API_VERSION_NAMESPACE(v2)
50
51} // namespace msgpack
52
53#endif // MSGPACK_V2_OBJECT_DECL_HPP
Definition adaptor_base.hpp:15
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition versioning.hpp:66