blob: 0f36348d98b5cd8e213d518b9a35a65e49f91e85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __VECTEUR_H__
#define __VECTEUR_H__
#include <iostream>
#include "forme.h"
using namespace std;
class Vecteur {
private:
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();
bool estVide();
Forme *getForme(int index);
int getTaille();
int getCapacite();
void afficher(ostream &s);
bool ajouterForme(Forme *f);
Forme *supprimerForme(int index);
void vider();
};
#endif
|