Files
ArduinoJson/JsonGenerator/JsonPrintable.cpp

35 lines
821 B
C++
Raw Normal View History

2014-08-26 10:13:49 +02:00
/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
#include "JsonPrintable.h"
#include "JsonPrettyPrint.h"
#include "StringBuilder.h"
using namespace ArduinoJson::Generator;
using namespace ArduinoJson::Internals;
2014-09-01 21:22:56 +02:00
size_t JsonPrintable::printTo(char* buffer, size_t bufferSize) const
2014-08-26 10:13:49 +02:00
{
StringBuilder sb(buffer, bufferSize);
return printTo(sb);
}
2014-09-01 21:22:56 +02:00
size_t JsonPrintable::prettyPrintTo(char* buffer, size_t bufferSize) const
{
StringBuilder sb(buffer, bufferSize);
return prettyPrintTo(sb);
}
2014-08-26 10:13:49 +02:00
size_t JsonPrintable::prettyPrintTo(IndentedPrint& p) const
{
JsonPrettyPrint prettyPrint(p);
return printTo(prettyPrint);
}
size_t JsonPrintable::prettyPrintTo(Print& p) const
{
IndentedPrint indentedPrint(p);
2014-08-26 10:26:40 +02:00
return prettyPrintTo(indentedPrint);
2014-08-26 10:13:49 +02:00
}