From 87418bdb0252a56c3c681459cbc37b4a964d737d Mon Sep 17 00:00:00 2001 From: jopierron Date: Thu, 3 Mar 2022 09:23:49 +0000 Subject: [PATCH] Delete Personne.hpp --- Personne.hpp | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Personne.hpp diff --git a/Personne.hpp b/Personne.hpp deleted file mode 100644 index 030e8c6..0000000 --- a/Personne.hpp +++ /dev/null @@ -1,19 +0,0 @@ -#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