blob: 3d0488975348add6e5b968d1c9d9a4260da32987 (
plain)
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
|
#ifndef CONTACT_HPP
# define CONTACT_HPP
# include <string>
class Contact
{
public:
Contact(std::string name);
// std::string phone_str();
std::string first_name;
std::string last_name;
std::string nickname;
std::string login;
std::string postal_address;
std::string email;
std::string phone;
std::string birthday;
std::string fav_meal;
std::string underware_color;
std::string darkest_secret;
};
#endif // CONTACT_HPP
|