12345678910111213141516171819202122 |
- #ifndef UTILITAIRES_H_INCLUDED
- #define UTILITAIRES_H_INCLUDED
- #include "type_def.h"
- #include <string>
- Personne genererPersonne(std::string* listNom, std::string* listPrenom, int nbNom, int nbPrenom);
- int initTabNomPrenom(vectNom tab, std::string fichier);
- void genererRepertoire(vectPersonne tab, std::string* listNom, std::string* listPrenom, int nbNom, int nbPrenom);
- bool egalitePersonne(Personne a, Personne b);
- bool comparerPersonne(Personne a, Personne b);
- #endif
|