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/ProtoProjet.cpp

25 lines
493 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#include "../includes/ProtoProjet.hpp"
2023-10-26 19:08:00 +02:00
ProtoProjet::ProtoProjet(std::vector<Tache *, bool> taches, Tache debut, Tache fin) {
taches=taches;
taches.push_back(debut);
taches.push_back(fin);
debut.ajouteDependance(fin);
}
2023-10-19 23:05:11 +02:00
ProtoProjet::~ProtoProjet() {}
ProtoProjet::ProtoProjet(const ProtoProjet &) {}
const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
if (this == &src) {
return *this;
}
return *this;
}
2023-10-26 19:08:00 +02:00
bool ajoute(std::string nom, int duree){
}