2014-07-07 13:38:35 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Print.h"
|
|
|
|
|
2014-07-07 14:05:41 +02:00
|
|
|
namespace ArduinoJson
|
2014-07-07 13:38:35 +02:00
|
|
|
{
|
2014-07-07 14:05:41 +02:00
|
|
|
namespace Internals
|
2014-07-07 13:48:50 +02:00
|
|
|
{
|
2014-07-07 14:05:41 +02:00
|
|
|
class EscapedString
|
|
|
|
{
|
|
|
|
public:
|
2014-08-01 15:27:58 +02:00
|
|
|
static size_t printTo(const char*, Print&);
|
2014-07-07 14:05:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|