#ifndef _CIRCLE_H_ #define _CIRCLE_H_ "circle.h" #include "ellipse.h" class circle: public ellipse { public: circle(const coordsys&,const coordinate& ,double); // mid, radius void set_center_angle(double); }; #endif