Files
ArduinoJson/JsonGenerator/EscapedString.h

20 lines
302 B
C
Raw Permalink Normal View History

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