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) 2018 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_V3_OBJECT_DECL_HPP
11#define MSGPACK_V3_OBJECT_DECL_HPP
12
15
16namespace msgpack {
17
21
22using v2::object_handle;
23
24namespace detail {
25
26using v2::detail::add_ext_type_size;
27
28} // namespace detail
29
30using v2::aligned_zone_size;
31
32using v2::clone;
33
34namespace detail {
35
36using v2::detail::packer_serializer;
37
38} // namespace detail
39
40using v2::object_parser;
41using v2::object_pack_visitor;
42using v2::object_stringize_visitor;
43
44using v2::operator==;
45using v2::operator!=;
46
48} // MSGPACK_API_VERSION_NAMESPACE(v3)
50
51} // namespace msgpack
52
53#endif // MSGPACK_V3_OBJECT_DECL_HPP
Definition adaptor_base.hpp:15
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition versioning.hpp:66