00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef QWT_POLYGON_H
00013 #define QWT_POLYGON_H
00014
00015 #include "qwt_global.h"
00016
00021 #if QT_VERSION < 0x040000
00022 #include <qpointarray.h>
00023 #include "qwt_double_rect.h"
00024
00025 typedef QPointArray QwtPolygon;
00026 typedef QMemArray<QwtDoublePoint> QwtPolygonF;
00027
00028 #else
00029
00030 #include <qpolygon.h>
00031 typedef QPolygon QwtPolygon;
00032 typedef QPolygonF QwtPolygonF;
00033 #endif
00034
00035 #endif