summaryrefslogtreecommitdiff
path: root/carre.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-12 23:40:59 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-12 23:40:59 -0500
commitb4f16386c70bfeab700e7cc129f2f04295aa0059 (patch)
tree8211e50bdf4f22eed2d2f2a19166e3a6f4ae5155 /carre.h
parent0ef3e40f726f35b86d79426104234d815cea2bb9 (diff)
vecteur est fomrmes sont finis
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);
+};