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

Method begin_object

FluidNC/src/JSONEncoder.cpp:219–223  ·  view source on GitHub ↗

Starts an object with {. If you need a named object you must call begin_member() first.

Source from the content-addressed store, hash-verified

217// Starts an object with {.
218// If you need a named object you must call begin_member() first.
219void JSONencoder::begin_object() {
220 comma_line();
221 add('{');
222 inc_level();
223}
224
225// Ends an object with }.
226void JSONencoder::end_object() {

Callers 7

listFilesystemJSONFunction · 0.80
listGCodeFilesFunction · 0.80
addWebuiMethod · 0.80
handleFileOpsMethod · 0.80
sendPropResponseMethod · 0.80
listAPsMethod · 0.80
itemMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected