-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.hpp
More file actions
42 lines (37 loc) · 1.48 KB
/
Contact.hpp
File metadata and controls
42 lines (37 loc) · 1.48 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Contact.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/27 13:30:14 by zelhajou #+# #+# */
/* Updated: 2024/06/04 11:25:41 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CONTACT_HPP
# define CONTACT_HPP
# include <string>
class Contact
{
private:
std::string firstName;
std::string lastName;
std::string nickName;
std::string phoneNumber;
std::string darkestSecret;
public:
Contact();
~Contact();
void setFirstName(std::string firstName);
void setLastName(std::string lastName);
void setNickName(std::string nickName);
void setPhoneNumber(std::string phoneNumber);
void setDarkestSecret(std::string darkestSecret);
std::string getFirstName();
std::string getLastName();
std::string getNickName();
std::string getPhoneNumber();
std::string getDarkestSecret();
};
#endif