diff options
Diffstat (limited to 'Project1/contact.h')
| -rw-r--r-- | Project1/contact.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Project1/contact.h b/Project1/contact.h index d3b439e..47e8fd3 100644 --- a/Project1/contact.h +++ b/Project1/contact.h @@ -6,26 +6,26 @@ class contact public: contact() = default; - char Get_firstName(); - char Set_firstName(); + char* Get_firstName(); + void Set_firstName(char firstName); - char Get_lastName(); - char Set_lastName(); + char* Get_lastName(); + void Set_lastName(); - char Get_streetAdress(); - char Set_streetAdress(); + char* Get_streetAdress(); + void Set_streetAdress(); - char Get_city(); - char Set_city(); + char* Get_city(); + void Set_city(); char* Get_state(); - char* Set_state(); + void Set_state(); - int Get_zip(); + int* Get_zip(); int Set_zip(); - char Get_email(); - char Set_email(); + char* Get_email(); + void Set_email(); void print(); |