-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.cpp
80 lines (70 loc) · 1.24 KB
/
Contact.cpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <iostream>
#include "Contact.h"
using namespace std;
Contact::Contact()
{
setMobile("");
setTel("");
setEmail("");
}
Contact::Contact(string mobile, string tel, string Email)
{
setMobile(mobile);
setTel(tel);
setEmail(Email);
}
void Contact:: setContact(string mobile, string tel, string Email)
{
this->mobile=mobile;
this->tel =tel;
this->Email=Email;
}
//Functions...
void Contact::setMobile(string mobile)
{
this-> mobile =mobile;
}
void Contact::setTel(string tel)
{
this->tel = tel;
}
void Contact::setEmail(string Email)
{
this->Email = Email;
}
string Contact::getMobile()
{
return mobile;
}
string Contact::getTel()
{
return tel;
}
string Contact::getEmail()
{
return Email;
}
//istream &ostream...
istream& operator >> (istream& is, Contact& C)
{
cout << "Contacts:"<<endl;
cout << " Mobile: ";
is >> C.mobile;
cout << " Tel: ";
is >> C.tel;
cout << " Email: ";
is >> C.Email;
return is;
}
ostream& operator << (ostream& os, Contact& C)
{
os << "Your Contacts: " << endl;
os << " Mobile: " << C.mobile << endl;
os << " Tel: " << C.tel << endl;
os << " Email: " << C.Email << endl;
return os;
}
//Destructors...
Contact::~Contact()
{
}