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) 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_V2_X3_UNPACK_DECL_HPP
11 #define MSGPACK_V2_X3_UNPACK_DECL_HPP
12 
13 #if defined(MSGPACK_USE_X3_PARSE)
14 
15 #include "msgpack/versioning.hpp"
16 
17 namespace msgpack {
18 
22 
23 namespace detail {
24 
25 template <typename Iterator>
26 void
27 unpack_imp(Iterator&& begin, Iterator&& end,
28  msgpack::zone& result_zone, msgpack::object& result, bool& referenced,
30  unpack_limit const& limit = unpack_limit());
31 
32 } // namespace detail
33 
34 template <typename Iterator>
36  Iterator&& begin, Iterator&& end,
37  bool& referenced,
39  unpack_limit const& limit = unpack_limit());
40 
41 template <typename Iterator>
43  Iterator&& begin, Iterator&& end,
45  unpack_limit const& limit = unpack_limit());
46 
47 template <typename Iterator>
49  msgpack::zone& z,
50  Iterator&& begin, Iterator&& end,
51  bool& referenced,
53  unpack_limit const& limit = unpack_limit());
54 
55 template <typename Iterator>
57  msgpack::zone& z,
58  Iterator&& begin, Iterator&& end,
60  unpack_limit const& limit = unpack_limit());
61 
63 } // MSGPACK_API_VERSION_NAMESPACE(v2)
65 
66 } // namespace msgpack
67 
68 
69 #endif // defined(MSGPACK_USE_X3_PARSE)
70 
71 #endif // MSGPACK_V2_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