diff options
Diffstat (limited to 'rectangle.h')
-rw-r--r-- | rectangle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rectangle.h b/rectangle.h index 0c85119..59b990b 100644 --- a/rectangle.h +++ b/rectangle.h @@ -8,7 +8,7 @@ class Rectangle:public Forme{ int largeur; int hauteur; public: - Rectangle(int x, int y, int l, int h); + Rectangle(int x=0, int y=0, int l=1, int h=1); ~Rectangle(); int getLargeur(); int getHauteur(); |