]> Creatis software - FrontAlgorithms.git/blob - lib/fpa/Config.h.in
e1cd318189a6a2678e41bb305157a98434b5ae0e
[FrontAlgorithms.git] / lib / fpa / Config.h.in
1 // =========================================================================
2 // @author Leonardo Florez Valencia
3 // @email florez-l@javeriana.edu.co
4 // =========================================================================
5
6 #ifndef __fpa__Config__h__
7 #define __fpa__Config__h__
8
9 #define VTK_FOUND @VTK_FOUND@
10 #if VTK_FOUND == 1
11 #  define USE_VTK
12 #else
13 #  undef USE_VTK
14 #endif
15
16 #define ivq_FOUND @ivq_FOUND@
17 #if ivq_FOUND == 1
18 #  define USE_ivq
19 #else
20 #  undef USE_ivq
21 #endif
22
23 // -------------------------------------------------------------------------
24 #define fpa_Base_TraitTypes( _traits_ )              \
25   typedef _traits_::TInputValue   TInputValue;       \
26   typedef _traits_::TOutputValue  TOutputValue;      \
27   typedef _traits_::TNeighborhood TNeighborhood;     \
28   typedef _traits_::TNode         TNode;             \
29   typedef _traits_::TNodes        TNodes;            \
30   typedef _traits_::TSeeds        TSeeds;            \
31   typedef _traits_::TVertex       TVertex;           \
32   typedef _traits_::TEvent        TEvent
33
34 #endif // __fpa__Config__h__
35
36 // eof - $RCSfile$