1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex4.1/Earpiece.hh

17 lines
362 B
C++
Raw Normal View History

#include <iostream>
#ifndef EARPIECE_HH
#define EARPIECE_HH
class Earpiece {
public:
Earpiece() { std::cout << "Earpiece Constructor " << this << std::endl ; }
Earpiece(const Earpiece&) { std::cout << "Earpiece Copy Constructor " << this << std::endl ; }
~Earpiece() { std::cout << "Earpiece Destructor " << this << std::endl ; }
private:
} ;
#endif