aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise08/Message.cpp
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2024-05-10 10:10:21 +0300
committerSyndamia <kamen@syndamia.com>2024-05-10 10:10:21 +0300
commit7b19cabee8b08478f31f6e4594ed28e1d04e153c (patch)
tree3574b2c3fd75ab66701def640fe7476651236184 /week11/Exercise08/Message.cpp
parent437e306dc9b79905105fb2e8af6dd1eae1b908ae (diff)
downloadoop-2023-solutions-7b19cabee8b08478f31f6e4594ed28e1d04e153c.tar
oop-2023-solutions-7b19cabee8b08478f31f6e4594ed28e1d04e153c.tar.gz
oop-2023-solutions-7b19cabee8b08478f31f6e4594ed28e1d04e153c.zip
[w11] Solved exercises
Diffstat (limited to 'week11/Exercise08/Message.cpp')
-rw-r--r--week11/Exercise08/Message.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/week11/Exercise08/Message.cpp b/week11/Exercise08/Message.cpp
new file mode 100644
index 0000000..12c91e9
--- /dev/null
+++ b/week11/Exercise08/Message.cpp
@@ -0,0 +1,55 @@
+#include "Message.h"
+#include <cstring>
+#include <iostream>
+
+void Message::free() {
+ delete[] textMessage;
+}
+
+void Message::copyFrom(const Message& other) {
+ this->textMessage = new char[strlen(other.textMessage) + 1];
+ strcpy(this->textMessage, other.textMessage);
+}
+
+Message::Message() {
+ this->textMessage = nullptr;
+}
+
+Message::~Message() {
+ free();
+}
+
+Message::Message(const Message& other) {
+ copyFrom(other);
+}
+
+Message& Message::operator=(const Message& other) {
+ if (this != &other) {
+ free();
+ copyFrom(other);
+ }
+ return *this;
+}
+
+Message::Message(Message&& other) {
+ this->textMessage = other.textMessage;
+ other.textMessage = nullptr;
+}
+
+Message& Message::operator=(Message&& other) {
+ if (this != &other) {
+ free();
+
+ this->textMessage = other.textMessage;
+ other.textMessage = nullptr;
+ }
+ return *this;
+}
+
+unsigned Message::Length() {
+ return strlen(textMessage);
+}
+
+std::ostream& operator<<(std::ostream& ostr, const Message& obj) {
+ return ostr << obj.textMessage;
+}