reverse init!
This commit is contained in:
parent
b4495026cb
commit
7ad0f154d2
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Reference in a new issue