MCPcopy Create free account
hub / github.com/bdring/FluidNC / begin_member_object

Method begin_member_object

FluidNC/src/JSONEncoder.cpp:209–215  ·  view source on GitHub ↗

Begins the creation of a member whose value is an object. Call end_object() to close the member

Source from the content-addressed store, hash-verified

207// Begins the creation of a member whose value is an object.
208// Call end_object() to close the member
209void JSONencoder::begin_member_object(const char* tag) {
210 comma_line();
211 quoted(tag);
212 add(':');
213 add('{');
214 inc_level();
215}
216
217// Starts an object with {.
218// If you need a named object you must call begin_member() first.

Callers 2

fileShowHashFunction · 0.80
showFwInfoJSONMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected