blob: 58f028480ac284a499b39e6bb3586cbb3f9d676e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#ifndef FORMATIDLIST_H
#define FORMATIDLIST_H
/**
* \brief The IDs for the load/save format plugins. They must be a macro not a static const member
* because they must be available even when the specifid plugin is not linked in
* or even compiled.
*/
// IMPORT
#define FORMATID_SLA134IMPORT 48
#define FORMATID_SLA13XIMPORT 49
#define FORMATID_SLA12XIMPORT 50
#define FORMATID_NATIVEIMPORTEND 99
#define FORMATID_ODGIMPORT 100
#define FORMATID_SXDIMPORT 101
#define FORMATID_SVGIMPORT 102
#define FORMATID_PSIMPORT 103
#define FORMATID_WMFIMPORT 104
#define FORMATID_AIIMPORT 105
#define FORMATID_XFIGIMPORT 106
#define FORMATID_CVGIMPORT 107
#define FORMATID_PCTIMPORT 108
#define FORMATID_PDFIMPORT 120
// EXPORT
#define FORMATID_SLA134EXPORT 48
#define FORMATID_SLA13XEXPORT 49
#define FORMATID_SLA12XEXPORT 50
#define FORMATID_NATIVEEXPORTEND 99
#define FORMATID_ODGEXPORT 100
#define FORMATID_SXDEXPORT 101
#define FORMATID_SVGEXPORT 102
#define FORMATID_PSEXPORT 103
#define FORMATID_PDFEXPORT 120
#endif
|