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-28 12:00:50 +02:00

19 lines
479 B
C++

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