18 lines
410 B
C++
18 lines
410 B
C++
|
#ifndef TP5_CONSULTANT_HPP
|
||
|
#define TP5_CONSULTANT_HPP 1
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
class Consultant {
|
||
|
friend std::ostream &operator<<(std::ostream &, const Consultant &);
|
||
|
|
||
|
public:
|
||
|
Consultant(); // constructor
|
||
|
virtual ~Consultant(); // destructor
|
||
|
|
||
|
Consultant(const Consultant &); // copy constructor
|
||
|
const Consultant &operator=(const Consultant &); // copy assignement
|
||
|
};
|
||
|
|
||
|
#endif
|