|
| | MyHandler () |
| |
| bool | Null () |
| |
| bool | Bool (bool b) |
| |
| bool | Int (int i) |
| |
| bool | Uint (unsigned u) |
| |
| bool | Int64 (int64_t i) |
| |
| bool | Uint64 (uint64_t u) |
| |
| bool | Double (double d) |
| |
| bool | RawNumber (const char *str, SizeType length, bool) |
| |
| bool | String (const char *str, SizeType length, bool) |
| |
| bool | StartObject () |
| |
| bool | Key (const char *str, SizeType length, bool) |
| |
| bool | EndObject (SizeType memberCount) |
| |
| bool | StartArray () |
| |
| bool | EndArray (SizeType elementCount) |
| |
| bool | Null () |
| |
| bool | Bool (bool b) |
| |
| bool | Int (int i) |
| |
| bool | Uint (unsigned u) |
| |
| bool | Int64 (int64_t i) |
| |
| bool | Uint64 (uint64_t u) |
| |
| bool | Double (double d) |
| |
| bool | RawNumber (const char *str, SizeType length, bool copy) |
| |
| bool | String (const char *str, SizeType length, bool copy) |
| |
| bool | StartObject () |
| |
| bool | Key (const char *str, SizeType length, bool copy) |
| |
| bool | EndObject (SizeType memberCount) |
| |
| bool | StartArray () |
| |
| bool | EndArray (SizeType elementCount) |
| |
Definition at line 15 of file simplepullreader.cpp.
◆ MyHandler()
◆ Bool() [1/2]
Definition at line 9 of file simplereader.cpp.
9 { cout <<
"Bool(" << boolalpha << b <<
")" << endl;
return true; }
◆ Bool() [2/2]
◆ Double() [1/2]
| bool MyHandler::Double |
( |
double |
d | ) |
|
|
inline |
Definition at line 14 of file simplereader.cpp.
14 { cout <<
"Double(" << d <<
")" << endl;
return true; }
◆ Double() [2/2]
| bool MyHandler::Double |
( |
double |
d | ) |
|
|
inline |
◆ EndArray() [1/2]
Definition at line 30 of file simplereader.cpp.
30 { cout <<
"EndArray(" << elementCount <<
")" << endl;
return true; }
◆ EndArray() [2/2]
◆ EndObject() [1/2]
Definition at line 28 of file simplereader.cpp.
28 { cout <<
"EndObject(" << memberCount <<
")" << endl;
return true; }
◆ EndObject() [2/2]
◆ Int() [1/2]
| bool MyHandler::Int |
( |
int |
i | ) |
|
|
inline |
Definition at line 10 of file simplereader.cpp.
10 { cout <<
"Int(" << i <<
")" << endl;
return true; }
◆ Int() [2/2]
| bool MyHandler::Int |
( |
int |
i | ) |
|
|
inline |
◆ Int64() [1/2]
Definition at line 12 of file simplereader.cpp.
12 { cout <<
"Int64(" << i <<
")" << endl;
return true; }
◆ Int64() [2/2]
◆ Key() [1/2]
Definition at line 24 of file simplereader.cpp.
25 cout <<
"Key(" << str <<
", " << length <<
", " << boolalpha <<
copy <<
")" << endl;
void copy(key &AA, const key &A)
◆ Key() [2/2]
◆ Null() [1/2]
Definition at line 8 of file simplereader.cpp.
8 { cout <<
"Null()" << endl;
return true; }
◆ Null() [2/2]
◆ RawNumber() [1/2]
Definition at line 15 of file simplereader.cpp.
16 cout <<
"Number(" << str <<
", " << length <<
", " << boolalpha <<
copy <<
")" << endl;
void copy(key &AA, const key &A)
◆ RawNumber() [2/2]
◆ StartArray() [1/2]
| bool MyHandler::StartArray |
( |
| ) |
|
|
inline |
Definition at line 29 of file simplereader.cpp.
29 { cout <<
"StartArray()" << endl;
return true; }
◆ StartArray() [2/2]
| bool MyHandler::StartArray |
( |
| ) |
|
|
inline |
◆ StartObject() [1/2]
| bool MyHandler::StartObject |
( |
| ) |
|
|
inline |
Definition at line 23 of file simplereader.cpp.
23 { cout <<
"StartObject()" << endl;
return true; }
◆ StartObject() [2/2]
| bool MyHandler::StartObject |
( |
| ) |
|
|
inline |
◆ String() [1/2]
Definition at line 19 of file simplereader.cpp.
20 cout <<
"String(" << str <<
", " << length <<
", " << boolalpha <<
copy <<
")" << endl;
void copy(key &AA, const key &A)
◆ String() [2/2]
◆ Uint() [1/2]
| bool MyHandler::Uint |
( |
unsigned |
u | ) |
|
|
inline |
Definition at line 11 of file simplereader.cpp.
11 { cout <<
"Uint(" << u <<
")" << endl;
return true; }
◆ Uint() [2/2]
| bool MyHandler::Uint |
( |
unsigned |
u | ) |
|
|
inline |
◆ Uint64() [1/2]
Definition at line 13 of file simplereader.cpp.
13 { cout <<
"Uint64(" << u <<
")" << endl;
return true; }
◆ Uint64() [2/2]
◆ data
| std::string MyHandler::data |
◆ type
| const char* MyHandler::type |
The documentation for this struct was generated from the following files:
- /home/abuild/rpmbuild/BUILD/electroneum-5.0.0.4/external/rapidjson/example/simplepullreader/simplepullreader.cpp
- /home/abuild/rpmbuild/BUILD/electroneum-5.0.0.4/external/rapidjson/example/simplereader/simplereader.cpp