summaryrefslogtreecommitdiff
path: root/carre.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 02:34:01 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 02:34:01 -0500
commit3fb8effa3603e9a9b96d263009fc1397433436ba (patch)
treeae4d7bf573f69245713b07c253a8027ace8d5244 /carre.h
parentb4f16386c70bfeab700e7cc129f2f04295aa0059 (diff)
Tout sauf les tests
Diffstat (limited to 'carre.h')
-rw-r--r--carre.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/carre.h b/carre.h
index 80b9d57..d986f7f 100644
--- a/carre.h
+++ b/carre.h
@@ -1,3 +1,6 @@
+#ifndef __CARRE_H__
+#define __CARRE_H__
+
#include "rectangle.h"
class Carre : public Rectangle {
@@ -6,3 +9,5 @@ public:
~Carre();
void afficher(ostream &s);
};
+
+#endif