#ifndef __CPM__PLUGINS__SIMPLEFILLREGION__H__ #define __CPM__PLUGINS__SIMPLEFILLREGION__H__ #include namespace cpm { namespace Plugins { /** */ class SimpleFillRegion : public cpPlugins::Interface::ImageToImageFilter { public: typedef SimpleFillRegion Self; typedef cpPlugins::Interface::ImageToImageFilter Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( SimpleFillRegion, cpPlugins_Interface_ImageToImageFilter ); virtual std::string GetClassName( ) const; protected: SimpleFillRegion( ); virtual ~SimpleFillRegion( ); virtual std::string _GenerateData( ); /* TODO template< unsigned int D > std::string _GD0( ); template< class P1, unsigned int D > std::string _GD1( ); template< class P1, class P2, unsigned int D > std::string _GD2( ); */ protected: itk::ProcessObject::Pointer m_Filter; }; // --------------------------------------------------------------------- CPPLUGINS_INHERIT_PROVIDER( SimpleFillRegion ); } // ecapseman } // ecapseman #endif // __CPM__PLUGINS__SIMPLEFILLREGION__H__ // eof - $RCSfile$