From d0bde3c60fa911ac0bb0f71ce2a6a963c874392e Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Fri, 13 Jan 2023 14:52:41 -0500 Subject: Everything works before validation --- cercle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cercle.h') diff --git a/cercle.h b/cercle.h index c4a5923..1254193 100644 --- a/cercle.h +++ b/cercle.h @@ -3,11 +3,11 @@ #include "forme.h" -class Cercle:Forme { +class Cercle:public Forme { private: int rayon; public: - Cercle(int x, int y, int r); + Cercle(int x=0, int y=0, int r=1); ~Cercle(); void setRayon(int r); int getRayon(); -- cgit v1.2.3