Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
ExportPointsSelectionRelations.cpp
1 #include "ExportPointsSelectionRelations.h"
2 
3 extern QString exportPointsSelectionRelationsToString (ExportPointsSelectionRelations exportPointsSelectionRelations)
4 {
5  switch (exportPointsSelectionRelations) {
6  case EXPORT_POINTS_SELECTION_RELATIONS_INTERPOLATE:
7  return "Interpolate";
8 
9  case EXPORT_POINTS_SELECTION_RELATIONS_RAW:
10  return "Raw";
11 
12  default:
13  return "Unknown";
14  }
15 }