#ifndef ELLIPSE_H #define ELLIPSE_H #include "rectangle.h" class Ellipse : public Rectangle { public: Ellipse(); virtual void draw(QPainter *painter); // Line interface protected: virtual QString className(); }; #endif // ELLIPSE_H