Engauge Digitizer  2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Enumerations | Functions
ExportPointsSelectionRelations.h File Reference
#include <QString>
Include dependency graph for ExportPointsSelectionRelations.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  ExportPointsSelectionRelations { EXPORT_POINTS_SELECTION_RELATIONS_INTERPOLATE, EXPORT_POINTS_SELECTION_RELATIONS_RAW }
 

Functions

QString exportPointsSelectionRelationsToString (ExportPointsSelectionRelations exportPointsSelectionRelations)
 

Enumeration Type Documentation

Enumerator
EXPORT_POINTS_SELECTION_RELATIONS_INTERPOLATE 
EXPORT_POINTS_SELECTION_RELATIONS_RAW 

Definition at line 12 of file ExportPointsSelectionRelations.h.

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 }