MCPcopy Create free account
hub / github.com/Tencent/rapidjson / Key

Method Key

example/simplereader/simplereader.cpp:24–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22 }
23 bool StartObject() { cout << "StartObject()" << endl; return true; }
24 bool Key(const char* str, SizeType length, bool copy) {
25 cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" << endl;
26 return true;
27 }
28 bool EndObject(SizeType memberCount) { cout << "EndObject(" << memberCount << ")" << endl; return true; }
29 bool StartArray() { cout << "StartArray()" << endl; return true; }
30 bool EndArray(SizeType elementCount) { cout << "EndArray(" << elementCount << ")" << endl; return true; }

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected