Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef QWT_CURVE_FITTER_H
00011 #define QWT_CURVE_FITTER_H
00012
00013 #include "qwt_global.h"
00014 #include <qpolygon.h>
00015 #include <qpainterpath.h>
00016
00020 class QWT_EXPORT QwtCurveFitter
00021 {
00022 public:
00031 enum Mode
00032 {
00039 Polygon,
00040
00047 Path
00048 };
00049
00050 virtual ~QwtCurveFitter();
00051
00052 Mode mode() const;
00053
00062 virtual QPolygonF fitCurve( const QPolygonF &polygon ) const = 0;
00063
00072 virtual QPainterPath fitCurvePath( const QPolygonF &polygon ) const = 0;
00073
00074 protected:
00075 explicit QwtCurveFitter( Mode mode );
00076
00077 private:
00078 Q_DISABLE_COPY(QwtCurveFitter)
00079
00080 const Mode d_mode;
00081 };
00082
00083 #endif