diff options
Diffstat (limited to 'carre.h')
-rw-r--r-- | carre.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#include "rectangle.h" + +class Carre : public Rectangle { +public: + Carre(int x, int y, int cote); + ~Carre(); + void afficher(ostream &s); +}; |