aboutsummaryrefslogtreecommitdiff
path: root/week12/Exercise3/Telephone.cpp
blob: 10370326d0382096ece21f006eb7d77cca2580e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "Telephone.h"
#include <iostream>

MobileDevice* Telephone::clone() {
	return new Telephone(*this);
}

void Telephone::Show() {
	std::cout << textMessage << std::endl;
}