aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/listuser.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/listuser.h')
-rw-r--r--sources/shiboken6/tests/libsample/listuser.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/sources/shiboken6/tests/libsample/listuser.h b/sources/shiboken6/tests/libsample/listuser.h
index 7e67039d9..9596de2c7 100644
--- a/sources/shiboken6/tests/libsample/listuser.h
+++ b/sources/shiboken6/tests/libsample/listuser.h
@@ -46,9 +46,12 @@ public:
ListOfPointF
};
- ListUser() {}
- ListUser(const ListUser& other) : m_lst(other.m_lst) {}
- virtual ~ListUser() {}
+ ListUser();
+ ListUser(const ListUser &other);
+ ListUser(ListUser &&other);
+ ListUser &operator=(const ListUser &other);
+ ListUser &operator=(ListUser &&other);
+ virtual ~ListUser();
virtual std::list<int> createList();
std::list<int> callCreateList();