diff --git a/src/Personne.hpp b/src/Personne.hpp new file mode 100644 index 0000000..5c6f2bd --- /dev/null +++ b/src/Personne.hpp @@ -0,0 +1,16 @@ +#ifndef PERSONNE_hpp +#define PERSONNE_hpp + +namespace reseau { + class Personne { + std::string prenom; + public: + Personne(const std::string& prenom); + // Personne(); + const std::string& getPrenom() const; + // ~Personne(); + }; +} + +#endif +