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/Mouthpiece.hh

17 lines
382 B
C++
Raw Permalink Normal View History

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