summaryrefslogtreecommitdiffstats
path: root/ellipse.h
blob: 617357f9a81284a4b38c454f4db7e39797d69d0f (plain)
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