-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.h
52 lines (43 loc) · 1.14 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef __USER_H_INCLUDED
#define __USER_H_INCLUDED
#include <iostream>
#include <string>
#include <vector>
class Message;
using std::vector;
using std::string;
using std::cout;
using std::endl;
using std::pair;
using std::getline;
using std::cin;
class User {
private:
string username, email;
vector<User> friends, sent, received;
vector<Message*> messages;
public:
User() {};
//~User() {cout << username << " deleted" << endl;};
User(const string, const string);
//-------------SET COMPARE, NEEDED TO ORDER-----------
friend bool operator<(const User, const User);
friend bool operator==(const User, const User);
friend bool operator!=(const User, const User);
//------------METHODS--------------
void friendship(User);
void AnswerR(User);
vector<User> notFriends();
User select(vector<User>, int);
void post(User);
//-----------Setters-----------------
void setUsername(const string&);
void setEmail(const string&);
//-----------Getters-----------------
string getUsername()const;
string getEmail()const;
vector<User> getFriends()const;
vector<User> getSent()const;
vector<User> getReceived()const;
};
#endif //__USER_H_INCLUDED