Added JsonContainer::prettyPrintTo()

This commit is contained in:
Benoit Blanchon
2014-10-07 11:22:10 +02:00
parent b6799dc231
commit 7a40711af3
19 changed files with 454 additions and 108 deletions

View File

@ -22,5 +22,7 @@ public:
void add(int value) { add((long) value); }
void add(long value);
void add(JsonContainer& innerContainer);
JsonArray createNestedArray();
};