Upload New File

main
Joan PIERRON 3 years ago
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…
Cancel
Save