#ifndef LOGEMENT_H #define LOGEMENT_H #include #include class Personne; class Logement { std::string adresse; std::set occupants; public: Logement(std::string ad); std::string ToString() const; void Arrivee(Personne* p); void Depart(Personne *p); std::string ListeOccupants() const; }; #endif // LOGEMENT_H