diff options
Diffstat (limited to 'Project1/contact.h')
| -rw-r--r-- | Project1/contact.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Project1/contact.h b/Project1/contact.h index 58de6f6..65d1b6f 100644 --- a/Project1/contact.h +++ b/Project1/contact.h @@ -14,9 +14,12 @@ class contact { public: contact() = default; + contact(const contact& copy); contact& operator=(const contact& rhs); + contact(contact&& move); + const char* Get_firstName(); void Set_firstName(const char* firstName); |