From ab1f2bc561b53a2960adf0babbbef59631285e6a Mon Sep 17 00:00:00 2001 From: jopierron Date: Fri, 1 Apr 2022 08:05:11 +0000 Subject: [PATCH] Delete Personne2.h --- src/Personne2.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/Personne2.h 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