mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 16:14:19 +01:00
Switched to Google coding style to match cpplint expectations
This commit is contained in:
@@ -13,7 +13,7 @@ class JsonBuffer {
|
||||
friend class Internals::JsonNode;
|
||||
friend class Internals::JsonParser;
|
||||
|
||||
public:
|
||||
public:
|
||||
virtual ~JsonBuffer(){};
|
||||
|
||||
JsonArray createArray() { return JsonArray(createArrayNode()); }
|
||||
@@ -24,12 +24,12 @@ public:
|
||||
|
||||
JsonArray parseArray(char *json);
|
||||
JsonObject parseObject(char *json);
|
||||
JsonValue parseValue(char *json); // TODO: remove
|
||||
JsonValue parseValue(char *json); // TODO: remove
|
||||
|
||||
protected:
|
||||
protected:
|
||||
virtual void *allocateNode() = 0;
|
||||
|
||||
private:
|
||||
private:
|
||||
Internals::JsonNode *createNode();
|
||||
|
||||
Internals::JsonNode *createArrayNode();
|
||||
|
||||
Reference in New Issue
Block a user