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