#ifndef TP5_GESTIONNAIRE_HPP #define TP5_GESTIONNAIRE_HPP 1 #include 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 }; #endif