All Classes Functions Variables
DrawingObjectFactoryAbstract.h
1 #ifndef DRAWINGOBJECTFACTORYABSTRACT_H
2 #define DRAWINGOBJECTFACTORYABSTRACT_H
3 
5 class Canvas;
6 class Point;
7 
9 {
10  public:
13  virtual DrawingObjectAbstract * Create( int type, const Canvas & canvas, const Point & start) = 0;
14 
15  protected:
16  private:
17 };
18 
19 #endif // DRAWINGOBJECTFACTORY_H