1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef REPERTOIRE_H_INCLUDED
- #define REPERTOIRE_H_INCLUDED
- #include "type_def.h"
- #include <fstream>
- void afficherTT(vectPersonne tab, int nb = 10000);
- void ajouterTT(vectPersonne tab, int& nb, Personne p);
- bool rechercherTT(vectPersonne tab, int nb, Personne p);
- void supprimerTT(vectPersonne tab, int& nb, Personne p);
- void lectureRepertoireTT(vectPersonne tab, int& nb);
- void afficherLT(ElementListe* maListe);
- ElementListe* ajouterLT(ElementListe* maListe, Personne p);
- bool rechercherLT(ElementListe* maListe, Personne p);
- ElementListe* supprimerLT(ElementListe* maListe, Personne p);
- ElementListe* lectureRepertoireLT(std::ifstream* flux = nullptr, int iter = 0);
- #endif
|