mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-05-23 13:44:44 +02:00
commit
d1eac600e9
@ -848,7 +848,6 @@ class unpacker {
|
|||||||
public:
|
public:
|
||||||
/// Constructor
|
/// Constructor
|
||||||
/**
|
/**
|
||||||
* @param referenced If the unpacked object contains reference of the buffer, then set as true, otherwise false.
|
|
||||||
* @param f A judging function that msgpack::object refer to the buffer.
|
* @param f A judging function that msgpack::object refer to the buffer.
|
||||||
* @param user_data This parameter is passed to f.
|
* @param user_data This parameter is passed to f.
|
||||||
* @param initial_buffer_size The memory size to allocate when unpacker is constructed.
|
* @param initial_buffer_size The memory size to allocate when unpacker is constructed.
|
||||||
|
@ -621,11 +621,11 @@ class parser : public detail::context<VisitorHolder> {
|
|||||||
public:
|
public:
|
||||||
/// Constructor
|
/// Constructor
|
||||||
/**
|
/**
|
||||||
* @param referenced If the unpacked object contains reference of the buffer, then set as true, otherwise false.
|
* @param hook The handler that is called when buffer is allocated internally.
|
||||||
* @param f A judging function that msgpack::object refer to the buffer.
|
* `hook` should be callable with char* parameter.
|
||||||
* @param user_data This parameter is passed to f.
|
* `parser` gives a chance to prepare finalizer.
|
||||||
|
* See https://github.com/msgpack/msgpack-c/wiki/v2_0_cpp_visitor#parse-api
|
||||||
* @param initial_buffer_size The memory size to allocate when unpacker is constructed.
|
* @param initial_buffer_size The memory size to allocate when unpacker is constructed.
|
||||||
* @param limit The size limit information of msgpack::object.
|
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
parser(ReferencedBufferHook& hook,
|
parser(ReferencedBufferHook& hook,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user