1 #ifndef FORMATIDLIST_H
2 #define FORMATIDLIST_H
3 
4 /**
5  * \brief The IDs for the load/save format plugins. They must be a macro not a static const member
6  * because they must be available even when the specifid plugin is not linked in
7  * or even compiled.
8  */
9 
10 // IMPORT
11 
12 #define FORMATID_SLA150IMPORT 47
13 #define FORMATID_SLA134IMPORT 48
14 #define FORMATID_SLA13XIMPORT 49
15 #define FORMATID_SLA12XIMPORT 50
16 #define FORMATID_NATIVEIMPORTEND 99
17 
18 #define FORMATID_FIRSTUSER     100
19 
20 // EXPORT
21 
22 #define FORMATID_SLA150EXPORT 47
23 #define FORMATID_SLA134EXPORT 48
24 #define FORMATID_SLA13XEXPORT 49
25 #define FORMATID_SLA12XEXPORT 50
26 #define FORMATID_NATIVEEXPORTEND 99
27 
28 #define FORMATID_ODGEXPORT 100
29 #define FORMATID_SXDEXPORT 101
30 #define FORMATID_SVGEXPORT 102
31 #define FORMATID_PSEXPORT  103
32 #define FORMATID_PDFEXPORT 120
33 
34 #endif
35