forked from bblanchon/ArduinoJson
Added JsonArray::createNestedObject()
This commit is contained in:
@ -21,8 +21,12 @@ public:
|
||||
void add(double value, int decimals=2);
|
||||
void add(int value) { add((long) value); }
|
||||
void add(long value);
|
||||
void add(JsonContainer& innerContainer);
|
||||
|
||||
void add(JsonContainer nestedArray);
|
||||
|
||||
JsonArray createNestedArray();
|
||||
JsonObject createNestedObject();
|
||||
|
||||
private:
|
||||
JsonNode* createNestedContainer(JsonNodeType type);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user