SAÉ 2.02
Test doc
Personne.hpp
Go to the documentation of this file.
1 
8 #ifndef PERSONNE_hpp
9 #define PERSONNE_hpp
10 
11 namespace reseau {
12  class Personne {
13  std::string prenom;
14  public:
15  Personne(const std::string& prenom);
16  // Personne();
17  const std::string& getPrenom() const;
18  // ~Personne();
19  };
20 }
21 
22 #endif
23