#ifndef TP5_TACHE_HPP #define TP5_TACHE_HPP 1 #include class Tache { enum Etat { EnAttente, Realisee }; static int unique_id; enum Etat etat; friend std::ostream &operator<<(std::ostream &, const Tache &); public: Tache(); // constructor virtual ~Tache(); // destructor Tache(const Tache &); // copy constructor const Tache &operator=(const Tache &); // copy assignement }; #endif