We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38b32ab commit c70469cCopy full SHA for c70469c
cppjson/include/cppjson/object.hpp
@@ -25,6 +25,10 @@ namespace cppjson
25
{
26
public:
27
explicit JsonObject();
28
+ JsonObject(const JsonObject& other);
29
+ JsonObject(JsonObject&& other);
30
+ JsonObject& operator=(const JsonObject& other);
31
+ JsonObject& operator=(JsonObject&& other);
32
~JsonObject();
33
34
template <typename T>
0 commit comments