Test that boolean values can be stored in a JsonObject

This commit is contained in:
Benoit Blanchon
2014-09-27 15:04:06 +02:00
parent 5fa446d3f5
commit 75588946c6
5 changed files with 36 additions and 27 deletions

View File

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