16 lines
289 B
C++
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;
|
|
|
|
}
|