20 lines
567 B
C++
20 lines
567 B
C++
#ifndef TP5_GESTIONNAIRE_HPP
|
|
#define TP5_GESTIONNAIRE_HPP 1
|
|
|
|
#include "RunProjet.hpp"
|
|
|
|
class Gestionnaire {
|
|
friend std::ostream &operator<<(std::ostream &, const Gestionnaire &);
|
|
|
|
public:
|
|
Gestionnaire(); // constructor
|
|
virtual ~Gestionnaire(); // destructor
|
|
|
|
Gestionnaire(const Gestionnaire &); // copy constructor
|
|
const Gestionnaire &operator=(const Gestionnaire &); // copy assignement
|
|
|
|
// Renvoie l'ordonnancement et la durée totale restante
|
|
virtual std::pair<std::vector<int>, int> avis(const RunProjet &) = 0;
|
|
};
|
|
|
|
#endif
|