From e37d4911c750550896c4155f452736200d977b83 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Mon, 16 Jan 2023 02:51:22 -0500 Subject: Almost done... --- forme.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'forme.h') 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; }; -- cgit v1.2.3