MessagePack for C++
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 
17 namespace msgpack {
18 
22 
23 namespace detail {
24 
26 
27 } // detail
28 
29 template <typename Iterator>
31  Iterator&& begin, Iterator&& end,
32  bool& referenced,
34  unpack_limit const& limit = unpack_limit());
35 
36 template <typename Iterator>
38  Iterator&& begin, Iterator&& end,
40  unpack_limit const& limit = unpack_limit());
41 
42 template <typename Iterator>
44  msgpack::zone& z,
45  Iterator&& begin, Iterator&& end,
46  bool& referenced,
48  unpack_limit const& limit = unpack_limit());
49 
50 template <typename Iterator>
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
The class holds object and zone.
Definition: object.hpp:44
Definition: cpp03_zone.hpp:31
parse_return unpack_imp(const char *data, std::size_t len, std::size_t &off, msgpack::zone &result_zone, msgpack::object &result, bool &referenced, unpack_reference_func f=MSGPACK_NULLPTR, void *user_data=MSGPACK_NULLPTR, unpack_limit const &limit=unpack_limit())
Definition: unpack.hpp:1353
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:1397
Object class that corresponding to MessagePack format object.
Definition: object_fwd.hpp:75
#define MSGPACK_NULLPTR
Definition: cpp_config_decl.hpp:85
#define MSGPACK_API_VERSION_NAMESPACE(ns)
Definition: versioning.hpp:66