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

Go to the source code of this file.

Enumerations

enum  ExportLayoutFunctions { EXPORT_LAYOUT_ALL_PER_LINE, EXPORT_LAYOUT_ONE_PER_LINE }
 

Functions

QString exportLayoutFunctionsToString (ExportLayoutFunctions exportLayoutFunctions)
 

Enumeration Type Documentation

Enumerator
EXPORT_LAYOUT_ALL_PER_LINE 
EXPORT_LAYOUT_ONE_PER_LINE 

Definition at line 6 of file ExportLayoutFunctions.h.

Function Documentation

QString exportLayoutFunctionsToString ( ExportLayoutFunctions  exportLayoutFunctions)

Definition at line 10 of file ExportLayoutFunctions.cpp.

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