forked from bblanchon/ArduinoJson
Test that JsonObject.size() is increased when values are added
This commit is contained in:
26
srcs/JsonValue.h
Normal file
26
srcs/JsonValue.h
Normal file
@ -0,0 +1,26 @@
|
||||
#pragma once
|
||||
|
||||
//class JsonBuffer;
|
||||
//class JsonNode;
|
||||
//class JsonObject;
|
||||
|
||||
class JsonValue
|
||||
{
|
||||
//public:
|
||||
//
|
||||
// JsonValue(JsonBuffer& buffer, JsonNode& node)
|
||||
// : _buffer(buffer), _node(node)
|
||||
// {
|
||||
// }
|
||||
//
|
||||
// void operator=(const JsonObject& object);
|
||||
// void operator=(int);
|
||||
//
|
||||
// operator JsonObject();
|
||||
// operator int();
|
||||
//
|
||||
//private:
|
||||
// JsonBuffer& _buffer;
|
||||
// JsonNode& _node;
|
||||
};
|
||||
|
Reference in New Issue
Block a user