00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef EXPORT_ORDINALS_STRAIGHT_H 00008 #define EXPORT_ORDINALS_STRAIGHT_H 00009 00010 #include "ExportValuesOrdinal.h" 00011 #include "Point.h" 00012 #include "Points.h" 00013 #include <QList> 00014 #include <QPointF> 00015 00016 class Transformation; 00017 00019 class ExportOrdinalsStraight 00020 { 00021 public: 00023 ExportOrdinalsStraight (); 00024 00026 ExportValuesOrdinal ordinalsAtIntervalsGraphWithoutTransformation (const Points &points, 00027 double pointsInterval) const; 00028 00030 ExportValuesOrdinal ordinalsAtIntervalsGraphWithTransformation (const Points &points, 00031 const Transformation &transformation, 00032 double pointsInterval) const; 00033 00034 }; 00035 00036 #endif // EXPORT_ORDINALS_STRAIGHT_H