Test that integers in JsonValue are copied

This commit is contained in:
Benoit Blanchon
2014-09-28 21:18:43 +02:00
parent e190b20ae1
commit 42ce5ab31f
3 changed files with 66 additions and 18 deletions

View File

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