summaryrefslogtreecommitdiff
path: root/carre.h
diff options
context:
space:
mode:
Diffstat (limited to 'carre.h')
-rw-r--r--carre.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/carre.h b/carre.h
new file mode 100644
index 0000000..80b9d57
--- /dev/null
+++ b/carre.h
@@ -0,0 +1,8 @@
+#include "rectangle.h"
+
+class Carre : public Rectangle {
+public:
+ Carre(int x, int y, int cote);
+ ~Carre();
+ void afficher(ostream &s);
+};