Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
ExportPointsSelectionFunctions.cpp
1 #include "ExportPointsSelectionFunctions.h"
2 
3 QString exportPointsSelectionFunctionsToString (ExportPointsSelectionFunctions exportPointsSelectionFunctions)
4 {
5  switch (exportPointsSelectionFunctions) {
6  case EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_ALL_CURVES:
7  return "InterpolateAllCurves";
8 
9  case EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_FIRST_CURVE:
10  return "InterpolateFirstCurve";
11 
12  case EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_PERIODIC:
13  return "InterpolatePeriodic";
14 
15  case EXPORT_POINTS_SELECTION_FUNCTIONS_RAW:
16  return "Raw";
17 
18  default:
19  return "Unknown";
20  }
21 }