#ifndef __CPPLUGINSIMAGEFILTERS__REGIONOFINTERESTIMAGEFILTER__H__ #define __CPPLUGINSIMAGEFILTERS__REGIONOFINTERESTIMAGEFILTER__H__ #include #include namespace cpPluginsImageFilters { /** */ class cpPluginsImageFilters_EXPORT RegionOfInterestImageFilter : public cpPlugins::ProcessObject { cpPluginsObject; public: typedef RegionOfInterestImageFilter Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( RegionOfInterestImageFilter, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( RegionOfInterestImageFilter, ImageFilters ); protected: RegionOfInterestImageFilter( ); virtual ~RegionOfInterestImageFilter( ); virtual void _GenerateData( ) ITK_OVERRIDE; template< class _TInputImage > inline void _GD0( _TInputImage* image ); private: // Purposely not implemented RegionOfInterestImageFilter( const Self& ); Self& operator=( const Self& ); }; } // ecapseman #endif // __CPPLUGINSIMAGEFILTERS__REGIONOFINTERESTIMAGEFILTER__H__ // eof - $RCSfile$