summaryrefslogtreecommitdiff
path: root/cercle.h
diff options
context:
space:
mode:
Diffstat (limited to 'cercle.h')
-rw-r--r--cercle.h4
1 files changed, 2 insertions, 2 deletions
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();