diff --git a/src/Personne2.h b/src/Personne2.h deleted file mode 100644 index 7653822..0000000 --- a/src/Personne2.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef PERSONNE2_HPP -#define PERSONNE2_HPP -#include -#include -#include - -namespace reseau2 { - class Personne { - std::string prenom; - std::list allPerson; - - // std::map> map; - public: - static std::list listePersonneAll; - Personne(const std::string& prenom); - bool ajoutListe(const Personne& unePersonne); - void affichListe(); - const std::string& getPrenom() const; - ~Personne(); - - - - }; - std::ostream& operator<<(std::ostream& os, Personne p); - bool operator==(Personne p1, Personne p2); -} - -#endif \ No newline at end of file