diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:28 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:28 -0500 |
commit | 20ae6ae3f82a4eeeb123d9c1f895f10c8967f44b (patch) | |
tree | da18c55250fb9f544b5b67aacc1a3fab4a7ccf75 /vecteur.h | |
parent | 267868847b0885f60aaae43afd4f54ce028181d8 (diff) | |
parent | 5f8fa959dab1106105f9e58325f65d0b51bb1631 (diff) |
Merge branch 'development'
Diffstat (limited to 'vecteur.h')
-rw-r--r-- | vecteur.h | 21 |
1 files changed, 9 insertions, 12 deletions
@@ -8,23 +8,20 @@ using namespace std; class Vecteur { private: - int capacite; // capacité maximale actuelle du vecteur - int taille; - // dynamic array of pointers to Forme - Forme **formes; + int capacite; // capacité maximale actuelle du vecteur + int taille; // nombre d'éléments actuellement dans le vecteur + Forme **formes; // dynamic array of pointers to Forme public: Vecteur(); ~Vecteur(); - // Informations - bool estVide(); + bool estVide(); Forme *getForme(int index); - int getTaille(); - int getCapacite(); - void afficher(ostream &s); - // Manipulations - bool ajouterForme(Forme *f); + int getTaille(); + int getCapacite(); + void afficher(ostream &s); + bool ajouterForme(Forme *f); Forme *supprimerForme(int index); - void vider(); + void vider(); }; #endif |