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