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.
更多...
#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.
typename Ch;
bool Null();
bool Bool(bool b);
bool Int(int i);
bool Uint(unsigned i);
bool Int64(int64_t i);
bool Uint64(uint64_t i);
bool Double(double d);
bool RawNumber(const Ch* str,
SizeType length, bool copy);
bool String(const Ch* str,
SizeType length, bool copy);
bool StartObject();
bool Key(const Ch* str,
SizeType length, bool copy);
bool StartArray();
};
Concept for receiving events from GenericReader upon parsing. The functions return true if no error o...
unsigned SizeType
Size type (for string lengths, array sizes, etc.)
Definition: rapidjson.h:384
该类的文档由以下文件生成: