summaryrefslogtreecommitdiff
path: root/vecteur.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 02:51:22 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 02:51:22 -0500
commite37d4911c750550896c4155f452736200d977b83 (patch)
treed9aa75757d6bb22e0b1e2a55b7cc047f9e961662 /vecteur.h
parent766f377da3f63ea674ae3903c95cf0b512834049 (diff)
Almost done...
Diffstat (limited to 'vecteur.h')
-rw-r--r--vecteur.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/vecteur.h b/vecteur.h
index de5e163..0f36348 100644
--- a/vecteur.h
+++ b/vecteur.h
@@ -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