This repository has been archived on 2023-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
GestionProjet/includes/Expert.hpp
2023-10-19 23:05:11 +02:00

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