29 lines
758 B
C++
29 lines
758 B
C++
#ifndef TP5_PROTOPROJET_HPP
|
|
#define TP5_PROTOPROJET_HPP 1
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
#include "Projet.hpp"
|
|
|
|
class ProtoProjet : public Projet {
|
|
/* Tache taches; */
|
|
friend std::ostream &operator<<(std::ostream &, const ProtoProjet &);
|
|
|
|
public:
|
|
ProtoProjet();
|
|
ProtoProjet(VecTaches taches, Tache debut,
|
|
Tache fin); // constructor
|
|
virtual ~ProtoProjet(); // destructor
|
|
|
|
ProtoProjet(const ProtoProjet &); // copy constructor
|
|
const ProtoProjet &operator=(const ProtoProjet &); // copy assignement
|
|
|
|
// Remet tous les marquages à leur valeur initiale
|
|
void cleanMarks();
|
|
|
|
// Insère une nouvelle tâche en la plaçant entre deux tâches au hasars
|
|
bool ajoute(std::string nom, int duree);
|
|
};
|
|
|
|
#endif
|