forked from bblanchon/ArduinoJson
Test JsonObject::prettyPrintTo()
This commit is contained in:
@ -8,6 +8,7 @@ struct JsonNode;
|
||||
class JsonObject : public JsonContainer
|
||||
{
|
||||
public:
|
||||
|
||||
JsonObject()
|
||||
{
|
||||
}
|
||||
@ -20,6 +21,8 @@ public:
|
||||
JsonValue operator[](const char* key);
|
||||
void remove(const char* key);
|
||||
|
||||
JsonObject createNestedObject(const char* key);
|
||||
|
||||
private:
|
||||
JsonNode* getOrCreateNodeAt(char const* key);
|
||||
};
|
Reference in New Issue
Block a user