blob: d986f7f14a5f27e9b4550c90cd1993afd5a10279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __CARRE_H__
#define __CARRE_H__
#include "rectangle.h"
class Carre : public Rectangle {
public:
Carre(int x, int y, int cote);
~Carre();
void afficher(ostream &s);
};
#endif
|