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 COORDS_TYPE_H 00008 #define COORDS_TYPE_H 00009 00010 #include <QString> 00011 00012 enum CoordsType { 00013 COORDS_TYPE_CARTESIAN, 00014 COORDS_TYPE_POLAR 00015 }; 00016 00017 extern QString coordsTypeToString (CoordsType coordsType); 00018 00019 #endif // COORDS_TYPE_H