mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 08:48:27 +01:00
Refactored to use StringBuilder
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "Printable.h"
|
||||
|
||||
class JsonValue;
|
||||
struct JsonNode;
|
||||
|
||||
@@ -24,7 +26,8 @@ public:
|
||||
|
||||
bool operator==(const JsonObject& other) const;
|
||||
|
||||
void serialize(char* buffer, size_t bufferSize) const;
|
||||
void printTo(char* buffer, size_t bufferSize) const;
|
||||
void printTo(Print& print) const;
|
||||
|
||||
private:
|
||||
JsonNode* _node;
|
||||
|
||||
Reference in New Issue
Block a user