Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/QuotedString.h
2014-10-18 22:04:13 +02:00

22 lines
360 B
C++

/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
#pragma once
#include "../Arduino/Print.h"
namespace ArduinoJson
{
namespace Internals
{
class QuotedString
{
public:
static size_t printTo(const char*, Print*);
static char* extractFrom(char* input, char** end);
};
}
}