Engauge Digitizer  2
CoordsType.h
1 #ifndef COORDS_TYPE_H
2 #define COORDS_TYPE_H
3 
4 #include <QString>
5 
6 enum CoordsType {
7  COORDS_TYPE_CARTESIAN,
8  COORDS_TYPE_POLAR
9 };
10 
11 extern QString coordsTypeToString (CoordsType coordsType);
12 
13 #endif // COORDS_TYPE_H