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

17 lines
331 B
C++

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