blob: e4519744ef602ff090168f32e1d2feb25157d23e (
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
28
29
|
#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;
// dynamic array of pointers to Forme
Forme **formes;
public:
Vecteur();
~Vecteur();
// Informations
bool estVide();
Forme *getForme(int index);
int getTaille();
void afficher(ostream &s);
// Manipulations
bool ajouterForme(Forme *f);
Forme *supprimerForme(int index);
void vider();
};
#endif
|