diff --git a/src/Personne.hpp b/src/Personne.hpp new file mode 100644 index 0000000..030e8c6 --- /dev/null +++ b/src/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