X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkVtkBlackBoxMacros.h;h=615af269c35f018852c26bf1ec82a1021b6eebd6;hb=5b035b52518e01b204f3512cfac405de68e13953;hp=6102fef06bdb30fa24a03e785bf1ded593a8c423;hpb=f9bd86194f26f89354a730d12ec7fab56a6dc14d;p=bbtk.git diff --git a/kernel/src/bbtkVtkBlackBoxMacros.h b/kernel/src/bbtkVtkBlackBoxMacros.h index 6102fef..615af26 100644 --- a/kernel/src/bbtkVtkBlackBoxMacros.h +++ b/kernel/src/bbtkVtkBlackBoxMacros.h @@ -1,32 +1,39 @@ -/*========================================================================= +/* + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la SantÈ) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # This software is governed by the CeCILL-B license under French law and + # abiding by the rules of distribution of free software. You can use, + # modify and/ or redistribute the software under the terms of the CeCILL-B + # license as circulated by CEA, CNRS and INRIA at the following URL + # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + # or in the file LICENSE.txt. + # + # As a counterpart to the access to the source code and rights to copy, + # modify and redistribute granted by the license, users are provided only + # with a limited warranty and the software's author, the holder of the + # economic rights, and the successive licensors have only limited + # liability. + # + # The fact that you are presently reading this means that you have had + # knowledge of the CeCILL-B license and that you accept its terms. + # ------------------------------------------------------------------------ */ + + +/*========================================================================= Program: bbtk Module: $RCSfile: bbtkVtkBlackBoxMacros.h,v $ Language: C++ - Date: $Date: 2009/12/18 18:37:44 $ - Version: $Revision: 1.14 $ + Date: $Date: 2012/11/16 08:49:01 $ + Version: $Revision: 1.15 $ =========================================================================*/ -/* --------------------------------------------------------------------- - -* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) -* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux -* -* This software is governed by the CeCILL-B license under French law and -* abiding by the rules of distribution of free software. You can use, -* modify and/ or redistribute the software under the terms of the CeCILL-B -* license as circulated by CEA, CNRS and INRIA at the following URL -* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -* or in the file LICENSE.txt. -* -* As a counterpart to the access to the source code and rights to copy, -* modify and redistribute granted by the license, users are provided only -* with a limited warranty and the software's author, the holder of the -* economic rights, and the successive licensors have only limited -* liability. -* -* The fact that you are presently reading this means that you have had -* knowledge of the CeCILL-B license and that you accept its terms. -* ------------------------------------------------------------------------ */ + @@ -57,11 +64,13 @@ //=========================================================================== #define BBTK_VTK_SET_DEFAULT_VALUES() \ - mVtkObject = NULL; + mVtkObject = bbVtkObject::New(); +// mVtkObject = NULL; //=========================================================================== #define BBTK_VTK_INITIALIZE_PROCESSING() \ - mVtkObject = bbVtkObject::New(); + mVtkObject = mVtkObject; +// mVtkObject = bbVtkObject::New(); //=========================================================================== #define BBTK_VTK_FINALIZE_PROCESSING() \ @@ -84,14 +93,29 @@ */ +//EED 2017-01-01 Migration VTK7 +#if VTK_MAJOR_VERSION <= 5 + //=========================================================================== /// Declares a vtkImageAlgorithm-inherited AtomicBlackBox input -#define BBTK_DECLARE_VTK_IMAGE_ALGORITHM_INPUT(NAME,TYPE) \ - public: \ - TYPE bbGetInput##NAME () \ - { if (mVtkObject) return mVtkObject->GetImageDataInput(0); return 0; } \ - void bbSetInput##NAME (TYPE d) \ - { if (mVtkObject) mVtkObject->SetInput( (vtkDataObject*) d); } + #define BBTK_DECLARE_VTK_IMAGE_ALGORITHM_INPUT(NAME,TYPE) \ + public: \ + TYPE bbGetInput##NAME () \ + { if (mVtkObject) return mVtkObject->GetImageDataInput(0); return 0; } \ + void bbSetInput##NAME (TYPE d) \ + { if (mVtkObject) mVtkObject->SetInput( (vtkDataObject*) d); } +#else +//=========================================================================== +/// Declares a vtkImageAlgorithm-inherited AtomicBlackBox input + #define BBTK_DECLARE_VTK_IMAGE_ALGORITHM_INPUT(NAME,TYPE) \ + public: \ + TYPE bbGetInput##NAME () \ + { if (mVtkObject) return mVtkObject->GetImageDataInput(0); return 0; } \ + void bbSetInput##NAME (TYPE d) \ + { if (mVtkObject) mVtkObject->SetInputData( (vtkDataObject*) d); } + +#endif + //=========================================================================== @@ -117,6 +141,11 @@ //=========================================================================== //=========================================================================== + +//EED 2017-01-01 Migration VTK7 + +#if (VTK_MAJOR_VERSION <= 5) + /// Declares a vtkAlgorithm-inherited AtomicBlackBox input #define BBTK_DECLARE_VTK_INPUT(NAME,TYPE) \ public: \ @@ -126,6 +155,24 @@ void bbSetInput##NAME (TYPE d) \ { if (mVtkObject) mVtkObject->SetInput( (vtkDataObject*) d); } +#endif + + + +#if (VTK_MAJOR_VERSION >= 6) + +/// Declares a vtkAlgorithm-inherited AtomicBlackBox input +#define BBTK_DECLARE_VTK_INPUT(NAME,TYPE) \ + public: \ + TYPE bbGetInput##NAME () \ + { if (mVtkObject) return dynamic_cast(mVtkObject->GetInput()); \ + return 0;} \ + void bbSetInput##NAME (TYPE d) \ + { if (mVtkObject) mVtkObject->SetInputData( (vtkDataObject*) d); } + +#endif + + //=========================================================================== //===========================================================================