mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
Added static EscapedString::printTo
This commit is contained in:
@@ -20,10 +20,15 @@ namespace ArduinoJson
|
||||
{
|
||||
}
|
||||
|
||||
size_t printTo(Print&) const;
|
||||
size_t printTo(Print& p) const
|
||||
{
|
||||
return printTo(rawString, p);
|
||||
}
|
||||
|
||||
private:
|
||||
const char* rawString;
|
||||
|
||||
static size_t printTo(const char*, Print&);
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user