#ifndef ELLIPSE_H #define ELLIPSE_H #include "rectangle.h" class Ellipse : public Rectangle { public: Ellipse(); // Line interface public: virtual bool isHit(const QPoint &clickPoint); virtual void draw(QPainter *painter); }; #endif // ELLIPSE_H