|
|
|
@ -1,12 +1,12 @@
|
|
|
|
|
#ifndef PERSONNE_hpp
|
|
|
|
|
#define PERSONNE_hpp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Personne {
|
|
|
|
|
namespace reseau {
|
|
|
|
|
class Personne {
|
|
|
|
|
const std::string nom ;
|
|
|
|
|
const std::string prenom ;
|
|
|
|
|
std::string numTel;
|
|
|
|
|
public:
|
|
|
|
|
public:
|
|
|
|
|
Personne(const std::string& nom, const std::string& prenom, const std::string& numTel);
|
|
|
|
|
// Personne();
|
|
|
|
|
const std::string& getNom() const;
|
|
|
|
@ -14,7 +14,8 @@ public:
|
|
|
|
|
const std::string& getNumTel() const;
|
|
|
|
|
void setNumTel(const std::string& numTel);
|
|
|
|
|
// ~Personne();
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|