You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
468 B
22 lines
468 B
#ifndef PERSONNE_hpp
|
|
#define PERSONNE_hpp
|
|
|
|
namespace reseau {
|
|
class Personne {
|
|
const std::string nom ;
|
|
const std::string prenom ;
|
|
std::string numTel;
|
|
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
|
|
|