-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwall.cpp
72 lines (67 loc) · 1.49 KB
/
wall.cpp
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
#include "wall.h"
#include "DlinkedList.h"
#include "DlinkedList.cpp"
#include <string>
#include <time.h>
using namespace std;
Wall::Wall(){
DoublyLinkedList<WallPost> wallList;
}
Wall::Wall(WallPost wallpost){
DoublyLinkedList<WallPost> wallList(wallpost);
}
Wall::~Wall(){
wallList.~DoublyLinkedList();
}
void Wall::add(WallPost wallpost){
wallList.add(wallpost);
}
void Wall::remove(int _id){
wallList.remove(_id);
}
string Wall::getWallList(){
string result = "";
Node<WallPost> *temp = wallList.getRoot();
if(temp == NULL){
return "no wall posts \n";
}
while (temp != NULL){
result = result + (temp->data.getMessage()) + "\n" ;
temp = temp->next;
}
return result;
}
WallPost::WallPost(){
message = "";
username = "";
timestamp = time(NULL); //set current time
}
WallPost::WallPost(string _message){
message = _message;
username = "";
timestamp = time(NULL); //set current time
}
WallPost::WallPost(string _message, string _name){
message = _message;
username = _name;
timestamp = time(NULL); //set current time
}
void WallPost::editMessage(string _message){
message = _message;
}
void WallPost::setId(int _id){
id = _id;
}
string WallPost::getUsername(){
return username;
}
string WallPost::getMessage(){
return message;
}
string WallPost::getWallPost(){
string result = "Message: " + message + "\n" + "Author: " + username + "\n" + "Timestamp: " + "missing time" + "\n";
return message;
}
int WallPost::getId(){
return id;
}