mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 15:27:30 +02:00
Test that integers in JsonValue are copied
This commit is contained in:
@ -21,6 +21,7 @@ public:
|
||||
void operator=(double);
|
||||
void operator=(int);
|
||||
void operator=(const JsonObject&);
|
||||
void operator=(const JsonValue&);
|
||||
|
||||
operator bool() const;
|
||||
operator const char*() const;
|
||||
@ -31,6 +32,7 @@ public:
|
||||
private:
|
||||
JsonNode* _node;
|
||||
|
||||
void setAsProxyTo(JsonNode*);
|
||||
JsonNode* getActualNode() const;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user