MessagePack for C++
Loading...
Searching...
No Matches
x3_unpack_decl.hpp
Go to the documentation of this file.
1//
2// MessagePack for C++ deserializing routine
3//
4// Copyright (C) 2017 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_X3_UNPACK_DECL_HPP
11#define MSGPACK_V3_X3_UNPACK_DECL_HPP
12
13#if defined(MSGPACK_USE_X3_PARSE)
14
16
17namespace msgpack {
18
22
23namespace detail {
24
25using v2::detail::unpack_imp;
26
27} // detail
28
29template <typename Iterator>
30msgpack::object_handle unpack(
31 Iterator&& begin, Iterator&& end,
32 bool& referenced,
34 unpack_limit const& limit = unpack_limit());
35
36template <typename Iterator>
37msgpack::object_handle unpack(
38 Iterator&& begin, Iterator&& end,
40 unpack_limit const& limit = unpack_limit());
41
42template <typename Iterator>
43msgpack::object unpack(
44 msgpack::zone& z,
45 Iterator&& begin, Iterator&& end,
46 bool& referenced,
48 unpack_limit const& limit = unpack_limit());
49
50template <typename Iterator>
51msgpack::object unpack(
52 msgpack::zone& z,
53 Iterator&& begin, Iterator&& end,
55 unpack_limit const& limit = unpack_limit());
56
58} // MSGPACK_API_VERSION_NAMESPACE(v3)
60
61} // namespace msgpack
62
63#endif // defined(MSGPACK_USE_X3_PARSE)
64
65#endif // MSGPACK_V3_X3_UNPACK_DECL_HPP
Definition unpack_decl.hpp:87
Definition check_container_size.hpp:31
Definition adaptor_base.hpp:15
bool(* unpack_reference_func)(msgpack::type::object_type type, std::size_t size, void *user_data)
The type of reference or copy judging function.
Definition unpack_decl.hpp:74
msgpack::object_kv * end(msgpack::object_map &map)
Definition iterator.hpp:25
msgpack::object_kv * begin(msgpack::object_map &map)
Definition iterator.hpp:23
msgpack::object_handle unpack(const char *data, std::size_t len, std::size_t &off, bool &referenced, unpack_reference_func f, void *user_data, unpack_limit const &limit)
Unpack msgpack::object from a buffer.
Definition unpack.hpp:1396
#define MSGPACK_NULLPTR
Definition cpp_config_decl.hpp:85
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition versioning.hpp:66