blob: 3bdc8a1649ae093b8ebb6266037764f1ed6b39d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "forme.h"
class Rectangle:public Forme{
private:
int largeur;
int hauteur;
public:
Rectangle(int x, int y, int l, int h);
~Rectangle();
int getLargeur();
int getHauteur();
Coordonnee getAncrageForme();
void setLargeur(int l);
void setHauteur(int h);
double getAire();
void afficher(ostream &s);
};
|