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