#include "../includes/ProtoProjet.hpp" ProtoProjet::ProtoProjet(std::vector taches, Tache debut, Tache fin) { taches=taches; taches.push_back(debut); taches.push_back(fin); debut.ajouteDependance(fin); } ProtoProjet::~ProtoProjet() {} ProtoProjet::ProtoProjet(const ProtoProjet &) {} const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) { if (this == &src) { return *this; } return *this; } bool ajoute(std::string nom, int duree){ }