📝 add binary() function to SAX documentation
This commit is contained in:
parent
bbcdf18ba5
commit
7a4841a42a
1 changed files with 2 additions and 0 deletions
|
@ -512,6 +512,8 @@ bool number_float(number_float_t val, const string_t& s);
|
||||||
|
|
||||||
// called when a string is parsed; value is passed and can be safely moved away
|
// called when a string is parsed; value is passed and can be safely moved away
|
||||||
bool string(string_t& val);
|
bool string(string_t& val);
|
||||||
|
// called when a binary value is parsed; value is passed and can be safely moved away
|
||||||
|
bool binary(binary_t& val);
|
||||||
|
|
||||||
// called when an object or array begins or ends, resp. The number of elements is passed (or -1 if not known)
|
// called when an object or array begins or ends, resp. The number of elements is passed (or -1 if not known)
|
||||||
bool start_object(std::size_t elements);
|
bool start_object(std::size_t elements);
|
||||||
|
|
Loading…
Reference in a new issue