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/Consultant.hpp
2023-10-27 21:51:27 +02:00

17 lines
439 B
C++

#ifndef TP5_CONSULTANT_HPP
#define TP5_CONSULTANT_HPP 1
#include "Gestionnaire.hpp"
class Consultant final : Gestionnaire {
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