diff --git a/src/Contact.hpp b/src/Contact.hpp new file mode 100644 index 0000000..fc29436 --- /dev/null +++ b/src/Contact.hpp @@ -0,0 +1,18 @@ +#ifndef CONTACT_hpp +#define CONTACT_hpp +#include"Personne.hpp" +#include + +class Contact { + Personne Proprietaire const; + std::list lesContacts{}; +public: + Contact(const Personne& P); + void ajouterContact(const Personne& unContact); + bool supprimerContact(const Personne& unContact); + // void envoyerMessage(std::string texte, Personne p); + // void recevoirMessage(std::string texte, Personne p); + // ~Contact(); +}; + +#endif