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

Go to the source code of this file.

Functions

QString exportPointsSelectionRelationsToString (ExportPointsSelectionRelations exportPointsSelectionRelations)
 

Function Documentation

QString exportPointsSelectionRelationsToString ( ExportPointsSelectionRelations  exportPointsSelectionRelations)

Definition at line 10 of file ExportPointsSelectionRelations.cpp.

11 {
12  QString rtn;
13 
14  switch (exportPointsSelectionRelations) {
16  rtn = QObject::tr ("Interpolate");
17  break;
18 
20  rtn = QObject::tr ("Raw");
21  break;
22  }
23 
24  return rtn;
25 }