-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinformation.h
More file actions
38 lines (28 loc) · 746 Bytes
/
Copy pathinformation.h
File metadata and controls
38 lines (28 loc) · 746 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
27
28
29
30
31
32
33
34
35
36
37
38
//-------------Infomation for Database -------------//
#include <string>
using std :: string;
class information{
public:
// Constructor & Deconstructor
information();
~information();
// Accessors and Mutators
void setFirstName(string firstName);
string firstName();
void setLastName(string lastName);
string LastName();
void setAge(int age);
int age();
void setEmail(string email);
string email();
void setId(int id);
int id();
// Methods
void display();
private:
string firstName_;
string Lastname_;
int age_;
string email_;
int id_;
};