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

21 lines
380 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
return std::make_pair(std::vector<int>(), 0);
}