aboutsummaryrefslogtreecommitdiff
path: root/Homework7/Homework7/ContactList.h
diff options
context:
space:
mode:
Diffstat (limited to 'Homework7/Homework7/ContactList.h')
-rw-r--r--Homework7/Homework7/ContactList.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Homework7/Homework7/ContactList.h b/Homework7/Homework7/ContactList.h
index cf0b711..e449bc9 100644
--- a/Homework7/Homework7/ContactList.h
+++ b/Homework7/Homework7/ContactList.h
@@ -5,6 +5,16 @@
class ContactList {
public:
+
+ ContactList(const Contact& copy);
+ ContactList& operator=(const ContactList& rhs);
+
+ ContactList& operator=(const Contact& rhs);
+
+
+ ContactList(Contact&& move);
+ ContactList& operator=(ContactList&& rhs);
+
ContactList() = default;
ContactList(const size_t& size);
~ContactList();