rapidjson::Handler Class Reference
rapidjson::Handler Class Reference
Concept for receiving events from GenericReader upon parsing. More...
#include <ThirdParty/rapidjson/include/rapidjson/reader.h>
Inheritance diagram for rapidjson::Handler:
Detailed Description
Concept for receiving events from GenericReader upon parsing.
concept Handler {
typename Ch;
void Null();
void Bool(bool b);
void Int(int i);
void Uint(unsigned i);
void Int64(int64_t i);
void Uint64(uint64_t i);
void Double(double d);
void String(const Ch* str, SizeType length, bool copy);
void StartObject();
void EndObject(SizeType memberCount);
void StartArray();
void EndArray(SizeType elementCount);
};
The documentation for this class was generated from the following file:
- Source/ThirdParty/rapidjson/include/rapidjson/reader.h