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-28 11:51:31 +02:00

19 lines
521 B
C++

#ifndef TP5_CONSULTANT_HPP
#define TP5_CONSULTANT_HPP 1
#include "Gestionnaire.hpp"
class Consultant final : public 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
virtual std::pair<std::vector<int>, int> avis(const RunProjet &projet);
};
#endif