summaryrefslogtreecommitdiff
path: root/canevas.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 19:31:33 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 19:31:33 -0500
commit267868847b0885f60aaae43afd4f54ce028181d8 (patch)
tree1cce415f624760481f2f4cc49d42c65fbd857e55 /canevas.h
parent82539db317b616b41b6e16629f19ddb4a49f6cc7 (diff)
parent86fbed0811fc4ef36ffb66b3f774df61eb87c24b (diff)
Merge branch 'development'
Diffstat (limited to 'canevas.h')
-rw-r--r--canevas.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/canevas.h b/canevas.h
index 21ed457..64b833a 100644
--- a/canevas.h
+++ b/canevas.h
@@ -7,8 +7,8 @@
* Ce fichier fait partie de la distribution de Graphicus.
********/
-#ifndef DESSIN_H
-#define DESSIN_H
+#ifndef __DESSIN_H__
+#define __DESSIN_H__
#include <iostream>
#include "forme.h"
@@ -34,6 +34,7 @@ public:
double aire();
bool translater(int deltaX, int deltaY);
void afficher(ostream & s);
+ bool reinitialiserCouche(int index);
private:
Couche couches[MAX_COUCHES];