#include <QString>
Go to the source code of this file.
◆ ExportPointsSelectionRelations
Enumerator |
---|
EXPORT_POINTS_SELECTION_RELATIONS_INTERPOLATE | |
EXPORT_POINTS_SELECTION_RELATIONS_RAW | |
Definition at line 12 of file ExportPointsSelectionRelations.h.
12 {
15};
@ EXPORT_POINTS_SELECTION_RELATIONS_INTERPOLATE
@ EXPORT_POINTS_SELECTION_RELATIONS_RAW
◆ exportPointsSelectionRelationsToString()
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}