diff options
Diffstat (limited to 'Homework7/Homework7/ContactList.h')
| -rw-r--r-- | Homework7/Homework7/ContactList.h | 10 |
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(); |