Test serialization of an object with strings

This commit is contained in:
Benoit Blanchon
2014-09-30 16:59:44 +02:00
parent 3243f2dc58
commit 9f85368cce
6 changed files with 215 additions and 4 deletions

20
srcs/EscapedString.h Normal file
View File

@ -0,0 +1,20 @@
/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
#pragma once
#include "Print.h"
namespace ArduinoJson
{
namespace Internals
{
class EscapedString
{
public:
static size_t printTo(const char*, Print&);
};
}
}