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