diff options
Diffstat (limited to 'Project1/contact.cpp')
| -rw-r--r-- | Project1/contact.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Project1/contact.cpp b/Project1/contact.cpp index 884000d..0cfa0e3 100644 --- a/Project1/contact.cpp +++ b/Project1/contact.cpp @@ -5,6 +5,19 @@ using std::cin; using std::cout; using std::endl; +contact::contact(const contact& copy) +{ + *this = copy; +} + +contact& contact::operator=(const contact& rhs) +{ + if(this != &rhs) + { + + } + return *this; +} void contact::Set_firstName(const char* firstName) |