#include "Telephone.hh"
int main(){
Telephone t;
std::cout << std::endl;
std::cout << "Cloning the Telephone object" << std::endl;
Telephone t2 = t;
std::cout << "Destructing all objects" << std::endl;
}