Engauge Digitizer  2
OrdinalToGraphicsPoint.h
1 #ifndef ORDINAL_TO_GRAPHICS_POINT_H
2 #define ORDINAL_TO_GRAPHICS_POINT_H
3 
4 #include <QMap>
5 
6 class GraphicsPoint;
7 
8 // Use QMap, which keeps the keys sorted, to map ordinal to GraphicsPoint
9 typedef QMap<double, GraphicsPoint*> OrdinalToGraphicsPoint;
10 
11 #endif // ORDINAL_TO_GRAPHICS_POINT_H
Graphics item for drawing a circular or polygonal Point.
Definition: GraphicsPoint.h:33