Engauge Digitizer  2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Functions
ExportPointsSelectionFunctions.cpp File Reference
#include "ExportPointsSelectionFunctions.h"
#include <QObject>
Include dependency graph for ExportPointsSelectionFunctions.cpp:

Go to the source code of this file.

Functions

QString exportPointsSelectionFunctionsToString (ExportPointsSelectionFunctions exportPointsSelectionFunctions)
 

Function Documentation

QString exportPointsSelectionFunctionsToString ( ExportPointsSelectionFunctions  exportPointsSelectionFunctions)

Definition at line 10 of file ExportPointsSelectionFunctions.cpp.

11 {
12  QString rtn;
13 
14  switch (exportPointsSelectionFunctions) {
16  rtn = QObject::tr ("InterpolateAllCurves");
17  break;
18 
20  rtn = QObject::tr ("InterpolateFirstCurve");
21  break;
22 
24  rtn = QObject::tr ("InterpolatePeriodic");
25  break;
26 
28  rtn = QObject::tr ("Raw");
29  break;
30 
31  default:
32  rtn = QObject::tr ("Unknown");
33  break;
34  }
35 
36  return rtn;
37 }