1 /*
2  * WriteFlags.h
3  *
4  * Copyright (C) 2005 J. "MUFTI" Scheurich
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program (see the file "COPYING" for details); if
18  * not, write to the Free Software Foundation, Inc., 675 Mass Ave,
19  * Cambridge, MA 02139, USA.
20  */
21 
22 #ifndef _WRITE_FLAGS_H
23 #define _WRITE_FLAGS_H
24 
25 enum {
26     WITHOUT_VALUE      = 1<<0,
27     NULL_VALUE         = 1<<1,
28     TEMP_SAVE          = 1<<2,
29     TEMP_EXPORT        = 1<<3,
30     PURE_VRML97        = 1<<4,
31     PURE_X3DV          = 1<<5,
32     X3DV               = 1<<6,
33     X3D_XML            = 1<<7,
34     PURE_X3D           = 1<<8,
35     X3D_4_WONDERLAND   = 1<<9,
36     TRIANGULATE        = 1<<10,
37     QUAD_TRIANGULATE   = 1<<11,
38     COVER              = 1<<12,
39     KANIM              = 1<<13,
40     X3DOM              = 1<<14,
41     XITE               = 1<<15,
42     CONVERT2X3D        = 1<<16,
43     CONVERT2VRML       = 1<<17,
44     CONVERT_TO_XML     = 1<<18,
45     CONVERT_FROM_XML   = 1<<19,
46     OFF                = 1<<20,
47     AC3D               = 1<<21,
48     AC3D_4_RAVEN       = 1<<22,
49     LDRAW_DAT          = 1<<23,
50     C_SOURCE           = 1<<24,
51     CC_SOURCE          = 1<<25,
52     JAVA_SOURCE        = 1<<26,
53     MANY_JAVA_CLASSES  = 1<<27,
54     OUTSIDE_JAVA_CLASS = 1<<28,
55     RIB                = 1<<29,
56     POVRAY             = 1<<30,
57     SKIP_SAVED_TEST    = 1<<31,
58 };
59 
60 #define WRITE_JAVA_MEMBER_VARIABLES WRITE_JAVA_VARS
61 
62 #endif
63