-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWall.h
84 lines (70 loc) · 1.52 KB
/
Wall.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#ifndef __WALL_H_INCLUDED
#define __WALL_H_INCLUDED
#include "User.h"
#include "functions.h"
#include <string>
#include <iostream>
#include <vector>
using std::string;
using std::cout;
using std::endl;
using std::vector;
class User;
class ReplyMessage;
class Message {
private:
string message, username;
int likes;
vector<ReplyMessage> Replies;
vector<User> LikedBy;
time_t timestamp;
public:
Message(const string user, const string msg)
{
username = user;
message = msg;
timestamp = getTime();
}
void addReply(ReplyMessage a) { Replies.push_back(a); }
void setLike(User& u)
{
if (position(LikedBy, u).first)
{
LikedBy.push_back(u);
likes++;
}
else
cout << "You have already liked this post." << endl;
}
vector<ReplyMessage> getReplies() const { return Replies; }
int getLikes() const { return likes; }
string getMessage() const { return message; }
};
class ReplyMessage : public Message {
public:
ReplyMessage(const string user, const string reply)
: Message(user, reply) {}
};
class Wall {
private:
public:
//Wall(const User&);
static void showWall(vector<Message> v)
{
int pos = 0;
vector<Message>::iterator it;
vector<ReplyMessage>::iterator rep;
for (it = v.begin(); it != v.end(); it++)
{
cout << "[" << pos << "] " << (*it).getMessage() << endl;
pos++;
for (rep = (*it).getReplies().begin(); rep != (*it).getReplies().end(); rep++)
{
int reply = 0;
cout << "[" << reply << "]" << (*rep).getMessage() << endl;
reply++;
}
}
}
};
#endif // !__WALL_H_INCLUDED