From a57357d186b8c8bd318365330771288b23382057 Mon Sep 17 00:00:00 2001 From: jopierron Date: Fri, 1 Apr 2022 08:07:11 +0000 Subject: [PATCH] Upload New File --- src/Personne.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/Personne.hpp 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 +