#include "../includes/Expert.hpp" Expert::Expert() {} Expert::~Expert() {} Expert::Expert(const Expert &) : Gestionnaire() {} const Expert &Expert::operator=(const Expert &src) { if (this == &src) { return *this; } return *this; } std::pair, int> Expert::avis(const RunProjet &projet) { // TODO const int duree_totale = projet.consult_tasks().front()->dureeParal(); return std::make_pair(std::vector(), duree_totale); }