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

18 lines
353 B
C++

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