diff --git a/src/Contact.hpp b/src/Contact.hpp deleted file mode 100644 index e055474..0000000 --- a/src/Contact.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef CONTACT_hpp -#define CONTACT_hpp -#include"Personne.hpp" -#include -#include -#include - -namespace reseau{ - class Contact { - reseau::Personne Proprietaire; - std::list lesContacts{}; - void Recursive(std::list Contacts, std::set* set); - public: - Contact(const reseau::Personne& Proprietaire); - const Personne& getProprio() const; - bool ajouterContact(const reseau::Personne& unContact); - bool supprimerContact(const reseau::Personne& unContact); - bool rechercher(const Personne& unContact); - void afficherContactDirect(); - void afficherContactIndirect(std::list Contacts); - // ~Contact(); - }; - std::ostream& operator<<(std::ostream& os, reseau::Personne p); - bool operator==(reseau::Personne p1, reseau::Personne p2); -} - -#endif