MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / beginObject

Method beginObject

MonaCore/sources/JSONWriter.cpp:41–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41UInt64 JSONWriter::beginObject(const char* type) {
42 start(true);
43
44 packet.write8('{');
45 if(!type)
46 return 0;
47 writePropertyName("__type");
48 writeString(type,strlen(type));
49 return 0;
50}
51
52void JSONWriter::endObject() {
53

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected