// Circle header ////////////////////////////////////////////////////////////////////// #ifndef CIRC_H #define CIRC_H class Circ { public: Circ(float rad,int n); virtual ~Circ(); void Outline(float size, float x, float y); void Filled(); void Filled(float size); void Filled(float size, float x, float y); private: float *xpts, *ypts; float _n; }; #endif