blob: 47e8fd33aed947f88d406c1c0db876f2428b960f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef CONTACT_HELPER
#define CONTACT_HELPER
class contact
{
public:
contact() = default;
char* Get_firstName();
void Set_firstName(char firstName);
char* Get_lastName();
void Set_lastName();
char* Get_streetAdress();
void Set_streetAdress();
char* Get_city();
void Set_city();
char* Get_state();
void Set_state();
int* Get_zip();
int Set_zip();
char* Get_email();
void Set_email();
void print();
private:
char* _firstName{};
char* _lastName{};
char* _streetAddress{};
char* _city{};
char* _state{};
int zip;
char* _email{};
};
#endif CONTACT_HELPER
|