#ifndef PERSONNE_H #define PERSONNE_H #include class Logement; class Personne { std::string identite; Logement *residence; public: Personne(std::string id); std::string ToString() const; void Emmenage(Logement *l); }; #endif // PERSONNE_H