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