Moved files into Internals/ and Arduino/

This commit is contained in:
Benoit Blanchon
2014-10-01 16:08:32 +02:00
parent 1a98fd5dfc
commit d66a7adc22
19 changed files with 43 additions and 36 deletions

View 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&);
};
}
}