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 CALLBACK_REMOVE_POINTS_IN_CURVES_GRAPHS_H 00008 #define CALLBACK_REMOVE_POINTS_IN_CURVES_GRAPHS_H 00009 00010 #include "CallbackSearchReturn.h" 00011 00012 class CoordSystem; 00013 class Point; 00014 class QString; 00015 00017 class CallbackRemovePointsInCurvesGraphs 00018 { 00019 public: 00021 CallbackRemovePointsInCurvesGraphs(CoordSystem &coordSystem); 00022 00024 CallbackSearchReturn callback (const QString &curveName, 00025 const Point &point); 00026 00027 private: 00028 CallbackRemovePointsInCurvesGraphs (); 00029 00030 CoordSystem &m_coordSystem; 00031 }; 00032 00033 #endif // CALLBACK_REMOVE_POINTS_IN_CURVES_GRAPHS_H