forked from tperamun2/Phillips-Hue-Lighting-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
User.h
35 lines (30 loc) · 706 Bytes
/
User.h
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
//
// User.h
//
// Created by Jake Schindler
//
//
#ifndef User_h
#define User_h
#include <stdio.h>
#include <string>
#include "Persistence.h"
class User{
private:
std::string firstName;
std::string lastName;
std::string email;
std::string password;
public:
User();
void update(std::string fName, std::string lName, std::string email, std::string password);
std::string getFirstName();
void setFirstName(std::string name);
std::string getLastName();
void setLastName(std::string name);
std::string getEmail();
void setEmail(std::string email);
std::string getPassword();
void setPassword(std::string password);
};
#endif //INC_3307USER_USER_H