Concept for receiving events from GenericReader upon parsing. The functions return true if no error occurs. If they return false, the event publisher should terminate the process.
More...
#include <reader.h>
Concept for receiving events from GenericReader upon parsing. The functions return true if no error occurs. If they return false, the event publisher should terminate the process.
concept Handler {
typename Ch;
bool Null();
bool Bool(bool b);
bool Int(int i);
bool Uint(unsigned i);
bool Double(double d);
(use
length)
bool RawNumber(
const Ch* str,
SizeType length,
bool copy);
boolString(
const Ch* str,
SizeType length,
bool copy);
bool StartObject();
boolmemberCount);
bool StartArray();
bool EndArray(
SizeType elementCount);
};
The documentation for this class was generated from the following file: