JsonParserGeneratorRK
|
Class for creating a JSON object with JsonWriter. More...
#include <JsonParserGeneratorRK.h>
Public Member Functions | |
JsonWriterAutoObject (JsonWriter *jw) | |
Start a new object. More... | |
~JsonWriterAutoObject () | |
End the object. | |
Protected Attributes | |
JsonWriter * | jw |
JsonWriter to write to. | |
Class for creating a JSON object with JsonWriter.
When you create an object, you must call startObject() to start and finishObjectOrArray() to complete it.
This class is instantiated on the stack to automatically start and finish for you.
|
inline |
Start a new object.
jw | The JsonWriter object to insert the object into |