forked from bblanchon/ArduinoJson
Renamed all .h files into .hpp (so that Sublime Text selects C++ syntax)
This commit is contained in:
22
include/ArduinoJson/Internals/QuotedString.hpp
Normal file
22
include/ArduinoJson/Internals/QuotedString.hpp
Normal file
@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Arduino JSON library
|
||||
* Benoit Blanchon 2014 - MIT License
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../Arduino/Print.hpp"
|
||||
|
||||
namespace ArduinoJson
|
||||
{
|
||||
namespace Internals
|
||||
{
|
||||
class QuotedString
|
||||
{
|
||||
public:
|
||||
static size_t printTo(const char*, Print*);
|
||||
|
||||
static char* extractFrom(char* input, char** end);
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user