X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FFunctors%2FBase.h;h=45bd84635afa5ad8b84a5e9bfa85320724a8c794;hb=d93ab4fea6dbc791560451ecdc4bf7555d8cf11d;hp=607b7c3b3fc025244106449c862c7b6debe70cfe;hpb=ea46079b5aef76c1782648ed23e70ea944649635;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/Functors/Base.h b/lib/fpa/Image/Functors/Base.h index 607b7c3..45bd846 100644 --- a/lib/fpa/Image/Functors/Base.h +++ b/lib/fpa/Image/Functors/Base.h @@ -3,6 +3,7 @@ #include #include +#include namespace fpa { @@ -28,8 +29,8 @@ namespace fpa public: itkTypeMacro( Base, itk::FunctionBase ); - itkGetConstObjectMacro( Image, TImageBase ); - itkSetConstObjectMacro( Image, TImageBase ); + itkGetConstObjectMacro( Image, TImage ); + itkSetConstObjectMacro( Image, TImage ); protected: Base( ) : Superclass( ) { } @@ -41,7 +42,7 @@ namespace fpa Self& operator=( const Self& other ); protected: - typename TImageBase::ConstPointer m_Image; + typename TImage::ConstPointer m_Image; }; } // ecapseman