forked from bblanchon/ArduinoJson
Test that boolean values can be stored in a JsonObject
This commit is contained in:
@ -6,22 +6,6 @@ struct JsonNode;
|
||||
|
||||
class JsonObject
|
||||
{
|
||||
// friend class JsonValue;
|
||||
//
|
||||
//public:
|
||||
// JsonObject(JsonBuffer& buffer, JsonNode& node)
|
||||
// : _buffer(buffer), _node(node)
|
||||
// {
|
||||
// }
|
||||
//
|
||||
// JsonObject createObject(const char* key)
|
||||
// {
|
||||
// JsonObject innerObject = _buffer.createObject();
|
||||
// addNodeAt(key, innerObject._node);
|
||||
// return innerObject;
|
||||
// }
|
||||
//
|
||||
|
||||
public:
|
||||
|
||||
JsonObject(JsonBuffer* buffer, JsonNode* node)
|
||||
@ -37,8 +21,4 @@ private:
|
||||
JsonBuffer* _buffer;
|
||||
JsonNode* _node;
|
||||
JsonNode* getOrCreateNodeAt(char const* key);
|
||||
|
||||
//
|
||||
// // TODO: pull up
|
||||
// void appendChild(JsonNode& newChild);
|
||||
};
|
Reference in New Issue
Block a user