diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 14:52:41 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 14:52:41 -0500 |
commit | d0bde3c60fa911ac0bb0f71ce2a6a963c874392e (patch) | |
tree | ddcc00fab2749cc7b4110eed9f69189b6fcc7422 /cercle.h | |
parent | 3fb8effa3603e9a9b96d263009fc1397433436ba (diff) |
Everything works before validation
Diffstat (limited to 'cercle.h')
-rw-r--r-- | cercle.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); |