From ee86b089738bb9f2ab938d4e945c3eedff8e0b1b Mon Sep 17 00:00:00 2001 From: jopierron Date: Thu, 3 Mar 2022 09:21:54 +0000 Subject: [PATCH] Upload New File --- Personne.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Personne.hpp diff --git a/Personne.hpp b/Personne.hpp new file mode 100644 index 0000000..030e8c6 --- /dev/null +++ b/Personne.hpp @@ -0,0 +1,19 @@ +#ifndef PERSONNE_hpp +#define PERSONNE_hpp + +class Personne { + std::string nom; + std::string prenom; + std::string numTel; + int numPers; +public: + Personne(const std::string& nom, const std::string& prenom, const std::string& numTel); + Personne(); + const std::string& getNom() const; + const std::string& getPrenom() const; + const std::string& getNumTel() const; + void setNumTel(const std::string& numTel); + // ~Personne(); +}; + +#endif \ No newline at end of file