#include "../includes/ProtoProjet.hpp" ProtoProjet::ProtoProjet() {} ProtoProjet::~ProtoProjet() {} ProtoProjet::ProtoProjet(const ProtoProjet &) : Projet() {} const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) { if (this == &src) { return *this; } return *this; } void ProtoProjet::cleanMarks() { for (auto t : taches) { t->visite = false; } }; /* bool ProtoProjet::ajoute(std::string nom, int duree) { return false; } */