#ifndef __CPPLUGINS__CONFIG__H__ #define __CPPLUGINS__CONFIG__H__ #include #include #include /* * ========================================================================= * Version numbers and strings * ========================================================================= */ #define cpPlugins_MAJ_VER @prj_MAJ_VER@ #define cpPlugins_MIN_VER @prj_MIN_VER@ #define cpPlugins_REL_VER @prj_REL_VER@ #define cpPlugins_VER "@prj_VER@" #define cpPlugins_sVER "@prj_sVER@" /* * ========================================================================= * Some useful constants and values * ========================================================================= */ #define cpPlugins_QT4_USED @QT4_FOUND@ #if cpPlugins_QT4_USED == 1 # define cpPlugins_QT4 #else // cpPlugins_QT4_USED == 1 # undef cpPlugins_QT4 #endif // cpPlugins_QT4_USED == 1 /* * ========================================================================= * Some macros * ========================================================================= */ #define cpPlugins_Id_Macro( N, C ) \ public: \ virtual const char* GetClassName( ) const ITK_OVERRIDE \ { return( #N ); } \ virtual const char* GetClassCategory( ) const ITK_OVERRIDE \ { return( #C ); } #endif // __CPPLUGINS__CONFIG__H__ // eof - $RCSfile$