-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetwork.h
52 lines (42 loc) · 888 Bytes
/
Network.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
#ifndef __NETWORK_H_INCLUDED
#define __NETWORK_H_INCLUDED
#include <iostream>
#include <vector>
#include "functions.h"
using std::vector;
class User;
class Network {
private:
Network() {};
vector<User> ListofUsers;
public:
//------Singleton Stuff-----
static Network& getInstance()
{
static Network instance;
return instance;
}
Network(Network const&) = delete;
void operator=(Network const&) = delete;
//------------Methods--------
static void registerUser(User& u)
{
Network net;
//Network::ListofUsers.push_back(u);
net.ListofUsers.push_back(u);
}
static bool usersAreFriends(User& u1, User& u2)
{
if (u1 == u2)
return false;
else
return contains(u1, u2, u1.getFriends(), u2.getFriends());
}
//-----------Getter------------
static vector<User> getUsers()
{
Network net;
return net.ListofUsers;
}
};
#endif // !__NETWORK_H_INCLUDED