-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathActivity.h
More file actions
executable file
·71 lines (62 loc) · 1.63 KB
/
Activity.h
File metadata and controls
executable file
·71 lines (62 loc) · 1.63 KB
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
#include <cstddef>
#include <iostream>
#include <string>
#include <ctime>
class Activity {
private:
std::string content;
size_t likes;
size_t views;
time_t date;
public:
// Constructor
Activity() : likes(0), views(0) {
std::time_t now = std::time(0);
this->date = now;
}
Activity(std::string Content):content(Content),likes(0),views(0) {
std::time_t now = std::time(0);
this->date = now;
}
// Copy constructor
Activity(const Activity& other)
: content(other.content), likes(other.likes), views(other.views), date(other.date) {}
// Assignment operator overload
Activity& operator=(const Activity& other) {
if (this != &other) { // Check for self-assignment
content = other.content;
likes = other.likes;
views = other.views;
date = other.date;
}
return *this;
}
void addLikes(size_t Likes ){
likes+=Likes;
}
void addViews(size_t Views ){
views+=Views;
}
const std::string& getContent() const {
return content;
}
// Getter for likes
size_t getLikes() const {
return likes;
}
// Getter for views
size_t getViews() const {
return views;
}
// Getter for date
time_t getDate() const {
return date;
}
// Display post information
void displayPost() {
std::cout << "Content: " << content << std::endl;
std::cout << "Likes: " << likes << std::endl;
std::cout << "Views: " << views << std::endl;
std::cout << "Date: " << date << std::endl;
}
};