]> Creatis software - cpPlugins.git/blob - plugins/ITKImageInterpolators/InterpolateImageFunction.cxx
5089870140538eb4397338bd5d97c26a37e3eb65
[cpPlugins.git] / plugins / ITKImageInterpolators / InterpolateImageFunction.cxx
1 #include <ITKImageInterpolators/InterpolateImageFunction.h>
2
3 // -------------------------------------------------------------------------
4 void cpPluginsITKImageInterpolators::InterpolateImageFunction::
5 SetITK( itk::LightObject* o )
6 {
7   if( this->m_ITK.GetPointer( ) != o )
8     this->m_ITK = o;
9 }
10
11 // -------------------------------------------------------------------------
12 void cpPluginsITKImageInterpolators::InterpolateImageFunction::
13 SetVTK( vtkObjectBase* o )
14 {
15   if( this->m_VTK.GetPointer( ) != o )
16     this->m_VTK = o;
17 }
18
19 // -------------------------------------------------------------------------
20 cpPluginsITKImageInterpolators::InterpolateImageFunction::
21 InterpolateImageFunction( )
22   : Superclass( )
23 {
24   this->_ConfigureOutput< cpPlugins::BaseObjects::DataObject >( "Output" );
25 }
26
27 // -------------------------------------------------------------------------
28 cpPluginsITKImageInterpolators::InterpolateImageFunction::
29 ~InterpolateImageFunction( )
30 {
31 }
32
33 // -------------------------------------------------------------------------
34 void cpPluginsITKImageInterpolators::InterpolateImageFunction::
35 _GenerateData( )
36 {
37 }
38
39 // eof - $RCSfile$