2014-07-07 13:38:35 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
2014-09-27 21:24:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Print.h"
|
|
|
|
|
|
|
|
namespace ArduinoJson
|
|
|
|
{
|
|
|
|
namespace Internals
|
|
|
|
{
|
|
|
|
class EscapedString
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static size_t printTo(const char*, Print&);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|