#ifndef TP5_TACHE_HPP #define TP5_TACHE_HPP 1 #include class Tache { 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