diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 19:31:33 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 19:31:33 -0500 |
commit | 267868847b0885f60aaae43afd4f54ce028181d8 (patch) | |
tree | 1cce415f624760481f2f4cc49d42c65fbd857e55 /canevas.h | |
parent | 82539db317b616b41b6e16629f19ddb4a49f6cc7 (diff) | |
parent | 86fbed0811fc4ef36ffb66b3f774df61eb87c24b (diff) |
Merge branch 'development'
Diffstat (limited to 'canevas.h')
-rw-r--r-- | canevas.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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];
|