diff options
| author | Connor McDowell <[email protected]> | 2024-02-22 19:01:06 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-22 19:01:06 -0800 |
| commit | c853f3c48a225036f27056287fc25d85e8b837df (patch) | |
| tree | 5ff40149806f29cdaf9c5ba41ff23a2d501b6163 /Project1/contact.h | |
| parent | overload op completed (diff) | |
| download | in-class-exercise-14-connormcdowell275-c853f3c48a225036f27056287fc25d85e8b837df.tar.xz in-class-exercise-14-connormcdowell275-c853f3c48a225036f27056287fc25d85e8b837df.zip | |
working with moves
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); |