1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#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