Files
ArduinoJson/srcs/Internals/JsonWriter.cpp
2014-10-16 00:11:23 +02:00

25 lines
559 B
C++

#include "ArduinoJson/Internals/JsonWriter.h"
#include "ArduinoJson/Internals/EscapedString.h"
using namespace ArduinoJson::Internals;
void JsonWriter::writeString(char const* value)
{
_length += EscapedString::printTo(value, _sink);
}
void JsonWriter::writeInteger(long value)
{
_length += _sink->print(value);
}
void JsonWriter::writeBoolean(bool value)
{
_length += _sink->print(value ? "true" : "false");
}
void JsonWriter::writeDouble(double value, int decimals)
{
_length += _sink->print(value, decimals);
}