aboutsummaryrefslogtreecommitdiff
path: root/week12/Exercise3/Telephone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'week12/Exercise3/Telephone.cpp')
-rw-r--r--week12/Exercise3/Telephone.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/week12/Exercise3/Telephone.cpp b/week12/Exercise3/Telephone.cpp
new file mode 100644
index 0000000..1250616
--- /dev/null
+++ b/week12/Exercise3/Telephone.cpp
@@ -0,0 +1,6 @@
+#include "Telephone.h"
+#include <iostream>
+
+void Telephone::Show() {
+ std::cout << textMessage << std::endl;
+}