Added an overload of prettyPrintTo()

This commit is contained in:
Benoit Blanchon
2014-09-01 21:22:56 +02:00
parent cd88fb0882
commit 763aa7fe37
2 changed files with 9 additions and 2 deletions

View File

@@ -19,10 +19,11 @@ namespace ArduinoJson
virtual size_t printTo(Print& p) const = 0;
size_t printTo(char* buffer, size_t bufferSize);
size_t printTo(char* buffer, size_t bufferSize) const;
size_t prettyPrintTo(IndentedPrint& p) const;
size_t prettyPrintTo(Print& p) const;
size_t prettyPrintTo(char* buffer, size_t bufferSize) const;
};
}
}