#ifndef TP5_PROJET_HPP #define TP5_PROJET_HPP 1 #include class Projet { friend std::ostream &operator<<(std::ostream &, const Projet &); public: Projet(); // constructor virtual ~Projet(); // destructor Projet(const Projet &); // copy constructor const Projet &operator=(const Projet &); // copy assignement }; #endif