mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-19 05:22:24 +02:00
Pulled up code from JsonObject to JsonContainer
This commit is contained in:
@ -7,8 +7,6 @@ struct JsonNode;
|
||||
|
||||
class JsonObject : public JsonContainer
|
||||
{
|
||||
friend JsonValue;
|
||||
|
||||
public:
|
||||
JsonObject()
|
||||
{
|
||||
@ -19,13 +17,9 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
size_t size();
|
||||
|
||||
JsonValue operator[](const char* key);
|
||||
void remove(const char* key);
|
||||
|
||||
bool operator==(const JsonObject& other) const;
|
||||
|
||||
private:
|
||||
JsonNode* getOrCreateNodeAt(char const* key);
|
||||
};
|
Reference in New Issue
Block a user