JsonParserGeneratorRK
|
Class for creating a JSON array with JsonWriter. More...
#include <JsonParserGeneratorRK.h>
Public Member Functions | |
JsonWriterAutoArray (JsonWriter *jw) | |
Start a new array. More... | |
~JsonWriterAutoArray () | |
End the array. | |
Protected Attributes | |
JsonWriter * | jw |
JsonWriter to write to. | |
Class for creating a JSON array with JsonWriter.
When you create an object, you must call startArray() 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 array.
jw | The JsonWriter object to insert the array into |