blob: de5e163b0a1e72e4077c3c0398ec0ebd53f38a03 (
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
30
|
#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();
int getCapacite();
void afficher(ostream &s);
// Manipulations
bool ajouterForme(Forme *f);
Forme *supprimerForme(int index);
void vider();
};
#endif
|