Handler Class Reference

Concept for receiving events from GenericReader upon parsing. More...

#include <reader.h>

+ Inheritance diagram for 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);
};
Concept for receiving events from GenericReader upon parsing.
const std::complex< Mdouble > i
Definition: ExtendedMath.h:51
unsigned SizeType
Use 32-bit array/string indices even for 64-bit platform, instead of using size_t.
Definition: rapidjson.h:92

The documentation for this class was generated from the following file: