VIP: Volume Image Processing


structure.h
Go to the documentation of this file.
1
4
5
6#ifndef VIP_OBJECT_STRUCTURE_H
7#define VIP_OBJECT_STRUCTURE_H
8
9#ifndef VTRUE
10#define VTRUE 1
11#endif
12#ifndef VFALSE
13#define VFALSE 0
14#endif
15
16#ifndef YES
17#define YES 1
18#endif
19#ifndef NO
20#define NO 0
21#endif
22
23#ifndef OK
24#define OK 1
25#endif
26#ifndef PB
27#define PB 0
28#endif
29
30#ifndef ON
31#define ON 1
32#endif
33#ifndef OFF
34#define OFF 0
35#endif
36
37struct VipCartoObjectPrivate;
38
39typedef struct {
40 int state;
41 struct VipCartoObjectPrivate *carto;
42} Object;
43
44#endif // VIP_OBJECT_STRUCTURE_H
45
int state
Definition structure.h:40
struct VipCartoObjectPrivate * carto
Definition structure.h:41