summaryrefslogtreecommitdiff
path: root/forme.h
diff options
context:
space:
mode:
Diffstat (limited to 'forme.h')
-rw-r--r--forme.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/forme.h b/forme.h
index c719366..f1fb5b6 100644
--- a/forme.h
+++ b/forme.h
@@ -19,11 +19,11 @@ class Forme {
public:
Forme(int x = 0, int y = 0);
virtual ~Forme();
- void translater(int deltaX, int deltaY);
+ void translater(int deltaX, int deltaY);
Coordonnee getAncrage();
- void setAncrage(Coordonnee c);
- virtual double aire() = 0;
- virtual void afficher(ostream & s) = 0;
+ void setAncrage(Coordonnee c);
+ virtual double aire() = 0;
+ virtual void afficher(ostream & s) = 0;
protected:
Coordonnee ancrage;
};