#ifndef PERSONNE_H
#define PERSONNE_H


class Personne
{
public:
	Personne();
	Personne(char[], char[], int);
	Personne(Personne const & autre);

	void afficher() const;


private:
	char nom[20];
	char prenom[20];
	int age;
};

#endif