forked from bblanchon/ArduinoJson
Moved files into Internals/ and Arduino/
This commit is contained in:
20
srcs/Internals/EscapedString.h
Normal file
20
srcs/Internals/EscapedString.h
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* 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&);
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user