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/src/Expert.cpp

23 lines
465 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#include "../includes/Expert.hpp"
2023-10-28 03:56:31 +02:00
Expert::Expert() {}
2023-10-19 23:05:11 +02:00
Expert::~Expert() {}
2023-10-27 23:27:41 +02:00
Expert::Expert(const Expert &) : Gestionnaire() {}
2023-10-19 23:05:11 +02:00
const Expert &Expert::operator=(const Expert &src) {
if (this == &src) {
return *this;
}
return *this;
}
2023-10-28 03:56:31 +02:00
std::pair<std::vector<int>, int> Expert::avis(const RunProjet &projet) {
// TODO
2023-10-28 04:06:37 +02:00
const int duree_totale = projet.consult_tasks().front()->dureeParal();
return std::make_pair(std::vector<int>(), duree_totale);
2023-10-28 03:56:31 +02:00
}