forked from bblanchon/ArduinoJson
20 lines
313 B
C++
20 lines
313 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../Arduino/Print.h"
|
|
|
|
namespace ArduinoJson
|
|
{
|
|
namespace Internals
|
|
{
|
|
class EscapedString
|
|
{
|
|
public:
|
|
static size_t printTo(const char*, Print&);
|
|
};
|
|
}
|
|
} |