Engauge Digitizer 2
Loading...
Searching...
No Matches
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

◆ ExportPointsSelectionRelations

Enumerator
EXPORT_POINTS_SELECTION_RELATIONS_INTERPOLATE 
EXPORT_POINTS_SELECTION_RELATIONS_RAW 

Definition at line 12 of file ExportPointsSelectionRelations.h.

Function Documentation

◆ exportPointsSelectionRelationsToString()

QString exportPointsSelectionRelationsToString ( ExportPointsSelectionRelations exportPointsSelectionRelations)
extern

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}