parent
e8a6409af5
commit
a57357d186
@ -0,0 +1,16 @@
|
|||||||
|
#ifndef PERSONNE_hpp
|
||||||
|
#define PERSONNE_hpp
|
||||||
|
|
||||||
|
namespace reseau {
|
||||||
|
class Personne {
|
||||||
|
std::string prenom;
|
||||||
|
public:
|
||||||
|
Personne(const std::string& prenom);
|
||||||
|
// Personne();
|
||||||
|
const std::string& getPrenom() const;
|
||||||
|
// ~Personne();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in new issue