reverse init!

This commit is contained in:
Mylloon 2023-10-28 12:09:52 +02:00
parent b4495026cb
commit 7ad0f154d2
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 5 additions and 5 deletions

View file

@ -23,11 +23,11 @@ class Projet {
protected:
Tache
// Première tâche qui sera exécutée
*debut,
// Source du graphe aka la dernière à être exécutée
*fin;
*fin,
// Première tâche qui sera exécutée
*debut;
Projet(); // constructor
virtual ~Projet(); // destructor

View file

@ -1,6 +1,6 @@
#include "../includes/Projet.hpp"
Projet::Projet() : debut(new Tache("Début", 0)), fin(new Tache("Fin", 0)) {
Projet::Projet() : fin(new Tache("Fin", 0)), debut(new Tache("Début", 0)) {
fin->ajouteDependance(*debut);
taches.push_back(fin);