mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 02:07:32 +02:00
Added namespace ArduinoJson::Internals for private types
This commit is contained in:
@ -7,18 +7,23 @@
|
||||
|
||||
#include "Print.h"
|
||||
|
||||
class EscapedString
|
||||
namespace ArduinoJson
|
||||
{
|
||||
public:
|
||||
|
||||
void set(const char* s)
|
||||
namespace Internals
|
||||
{
|
||||
rawString = s;
|
||||
class EscapedString
|
||||
{
|
||||
public:
|
||||
|
||||
void set(const char* s)
|
||||
{
|
||||
rawString = s;
|
||||
}
|
||||
|
||||
size_t printTo(Print&) const;
|
||||
|
||||
private:
|
||||
const char* rawString;
|
||||
};
|
||||
}
|
||||
|
||||
size_t printTo(Print&) const;
|
||||
|
||||
private:
|
||||
const char* rawString;
|
||||
};
|
||||
|
||||
}
|
Reference in New Issue
Block a user