Skip to content

Commit c70469c

Browse files
authored
Add declarations for JsonObject's special functions
1 parent 38b32ab commit c70469c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cppjson/include/cppjson/object.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ namespace cppjson
2525
{
2626
public:
2727
explicit JsonObject();
28+
JsonObject(const JsonObject& other);
29+
JsonObject(JsonObject&& other);
30+
JsonObject& operator=(const JsonObject& other);
31+
JsonObject& operator=(JsonObject&& other);
2832
~JsonObject();
2933

3034
template <typename T>

0 commit comments

Comments
 (0)