Refactored to use StringBuilder

This commit is contained in:
Benoit Blanchon
2014-09-30 16:40:00 +02:00
parent ab2587f089
commit 6b2705769a
9 changed files with 156 additions and 6 deletions

View File

@ -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;