]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Config.h.in
105f8b5330444243d353f3f0567501d6d0b9babf
[cpPlugins.git] / lib / cpPlugins / Config.h.in
1 #ifndef __cpPlugins__Config__h__
2 #define __cpPlugins__Config__h__
3
4 #define ITK_MANUAL_INSTANTIATION
5 #include <cpPlugins_Export.h>
6 #include <stdexcept>
7 #include <cpPlugins/RealConfig.h>
8
9 /*
10  * =========================================================================
11  * Identify OS
12  * =========================================================================
13  */
14 #define cpPlugins_OS_@CMAKE_SYSTEM_NAME@
15 #ifdef cpPlugins_OS_Windows
16 #  define cpPlugins_LIB_PREFIX     ""
17 #  define cpPlugins_ENV_SEPARATOR  ";"
18 #  define cpPlugins_PATH_SEPARATOR '\\'
19 #  define cpPlugins_LIB_EXT        ".dll"
20 #else // cpPlugins_OS_Windows
21 #  define cpPlugins_LIB_PREFIX     "lib"
22 #  define cpPlugins_ENV_SEPARATOR  ":"
23 #  define cpPlugins_PATH_SEPARATOR '/'
24 #  ifdef cpPlugins_OS_Linux
25 #    define cpPlugins_LIB_EXT ".so"
26 #  else // cpPlugins_OS_Linux
27 #    define cpPlugins_LIB_EXT ".dylib"
28 #  endif // cpPlugins_OS_Linux
29 #endif // cpPlugins_OS_Windows
30
31 #ifdef cpPlugins_OS_Windows
32 #  ifndef WIN32_LEAN_AND_MEAN
33 #    define WIN32_LEAN_AND_MEAN
34 #  endif // WIN32_LEAN_AND_MEAN
35 #  define NOMINMAX
36 #  include <windows.h>
37 #  include <tchar.h>
38 #endif // cpPlugins_OS_Windows
39
40 /*
41  * =========================================================================
42  * Some global values
43  * =========================================================================
44  */
45
46 #define cpPlugins_PATHS "cpPlugins_PATHS"
47 #define cpPlugins_CONFIG "cpPlugins_Libraries.config"
48 #define cpPlugins_QT4_USED @QT4_FOUND@
49 #if cpPlugins_QT4_USED == 1
50 #  define cpPlugins_QT4
51 #  define cpPlugins_QVTKWidget @cpPlugins_Qt4_VTKWidget@
52 #  include <@cpPlugins_Qt4_VTKWidget@.h>
53 #else // cpPlugins_QT4_USED == 1
54 #  undef cpPlugins_QT4
55 #endif // cpPlugins_QT4_USED == 1
56
57 /*
58  * =========================================================================
59  * Version numbers and strings
60  * =========================================================================
61  */
62
63 #define cpPlugins_MAJOR_VERSION   @prj_MAJ_VER@
64 #define cpPlugins_MINOR_VERSION   @prj_MIN_VER@
65 #define cpPlugins_RELEASE_VERSION @prj_REL_VER@
66 #define cpPlugins_VERSION         "@prj_VERSION@"
67 #define cpPlugins_SHORT_VERSION   "@prj_SHORT_VERSION@"
68 #define cpPlugins_OpenGL_BackEnd_@VTK_RENDERING_BACKEND@
69
70 /*
71  * =========================================================================
72  * Language related macros
73  * =========================================================================
74  */
75
76 #if __cplusplus >= 201103L
77 #  define cpPlugins_OVERRIDE override
78 #  define cpPlugins_DELETE_FUNCTION =delete
79 #  define cpPlugins_NULLPTR  nullptr
80 #  define cpPlugins_NOEXCEPT noexcept
81 #  define cpPlugins_HAS_CXX11_STATIC_ASSERT
82 #  define cpPlugins_HAS_CXX11_RVREF
83 #else // __cplusplus >= 201103L
84 #  define cpPlugins_OVERRIDE
85 #  define cpPlugins_DELETE_FUNCTION
86 #  define cpPlugins_NULLPTR  NULL
87 #  define cpPlugins_NOEXCEPT throw()
88 #endif // __cplusplus >= 201103L
89
90 /*
91  * =========================================================================
92  * Some macros
93  * =========================================================================
94  */
95
96 #define cpPlugins_Id_Macro( _class, _category )                         \
97   public:                                                               \
98   virtual const char* GetClassName( ) const cpPlugins_OVERRIDE          \
99   { return( #_class ); }                                                \
100   virtual const char* GetClassCategory( ) const cpPlugins_OVERRIDE      \
101   { return( #_category ); }
102
103 #define cpPluginsObject( _cls, _scls, _cat )                            \
104   public:                                                               \
105   typedef _cls                            Self;                         \
106   typedef _scls                           Superclass;                   \
107   typedef itk::SmartPointer< Self >       Pointer;                      \
108   typedef itk::SmartPointer< const Self > ConstPointer;                 \
109   public:                                                               \
110   itkNewMacro( Self );                                                  \
111   itkTypeMacro( _cls, _scls );                                          \
112   public:                                                               \
113   virtual const char* GetClassName( ) const cpPlugins_OVERRIDE          \
114   { return( #_cls ); }                                                  \
115   virtual const char* GetClassCategory( ) const cpPlugins_OVERRIDE      \
116   { return( #_cat ); }                                                  \
117   protected:                                                            \
118   _cls( );                                                              \
119   virtual ~_cls( );                                                     \
120   virtual void _GenerateData( ) cpPlugins_OVERRIDE;                     \
121   private:                                                              \
122   _cls( const Self& );                                                  \
123   Self& operator=( const Self& )
124
125 #define cpPlugins_Compatibility_Macro                                   \
126   virtual bool IsCompatible(                                            \
127     const DataObject* other                                             \
128     ) const cpPlugins_OVERRIDE                                          \
129   {                                                                     \
130     return( dynamic_cast< const Self* >( other ) != NULL );             \
131   }
132
133 #endif // __cpPlugins__Config__h__
134
135 // eof - $RCSfile$