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 ORDINAL_TO_GRAPHICS_POINT_H 00008 #define ORDINAL_TO_GRAPHICS_POINT_H 00009 00010 #include <QMap> 00011 00012 class GraphicsPoint; 00013 00014 // Use QMap, which keeps the keys sorted, to map ordinal to GraphicsPoint 00015 typedef QMap<double, GraphicsPoint*> OrdinalToGraphicsPoint; 00016 00017 #endif // ORDINAL_TO_GRAPHICS_POINT_H