diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:28 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:28 -0500 |
commit | 20ae6ae3f82a4eeeb123d9c1f895f10c8967f44b (patch) | |
tree | da18c55250fb9f544b5b67aacc1a3fab4a7ccf75 /rectangle.h | |
parent | 267868847b0885f60aaae43afd4f54ce028181d8 (diff) | |
parent | 5f8fa959dab1106105f9e58325f65d0b51bb1631 (diff) |
Merge branch 'development'
Diffstat (limited to 'rectangle.h')
-rw-r--r-- | rectangle.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rectangle.h b/rectangle.h index 59b990b..02aeb98 100644 --- a/rectangle.h +++ b/rectangle.h @@ -10,13 +10,13 @@ class Rectangle:public Forme{ public: Rectangle(int x=0, int y=0, int l=1, int h=1); ~Rectangle(); - int getLargeur(); - int getHauteur(); + int getLargeur(); + int getHauteur(); Coordonnee getAncrageForme(); - void setLargeur(int l); - void setHauteur(int h); - double aire(); - void afficher(ostream &s); + void setLargeur(int l); + void setHauteur(int h); + double aire(); + void afficher(ostream &s); }; #endif |