diff options
Diffstat (limited to 'forme.h')
-rw-r--r-- | forme.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; }; |