-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerson.hpp
More file actions
26 lines (21 loc) · 735 Bytes
/
Person.hpp
File metadata and controls
26 lines (21 loc) · 735 Bytes
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
#pragma once
#include <string>
class Person{
public:
Person(std::string, std::string, std::string, std::string, std::string, std::string, std::string);
std::string getFirstName() const { return firstName_; }
std::string getOthersName() const { return otherNames_; }
std::string getEmail() const { return email_; }
std::string getTel() const { return tel_; }
std::string getStreet() const { return street_; }
std::string getTown() const { return town_; }
std::string getCountry() const { return country_; }
private:
std::string firstName_;
std::string otherNames_;
std::string email_;
std::string tel_;
std::string street_;
std::string town_;
std::string country_;
};