1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
uni-m.cds-adv-prog/ex4.1/main.cpp

16 lines
289 B
C++

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