X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FImageToMeshFilter.h;h=70dc9a207ae7768a4b45df0a32d09076af311673;hb=e561a2fa4dcaee2c544e58385e1ff7d56ba8b051;hp=dba914249facfa3d9818bf7e6f5aeb46809703e0;hpb=2d96cce7bcab0bdcd9e93e44ed413c47388151d9;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/ImageToMeshFilter.h b/lib/cpPlugins/Interface/ImageToMeshFilter.h index dba9142..70dc9a2 100644 --- a/lib/cpPlugins/Interface/ImageToMeshFilter.h +++ b/lib/cpPlugins/Interface/ImageToMeshFilter.h @@ -2,7 +2,7 @@ #define __CPPLUGINS__INTERFACE__IMAGETOMESHFILTER__H__ #include -#include +#include namespace cpPlugins { @@ -11,20 +11,29 @@ namespace cpPlugins /** */ class cpPlugins_Interface_EXPORT ImageToMeshFilter - : public ProcessObject + : public FilterObject { public: - typedef ImageToMeshFilter Self; - typedef ProcessObject Superclass; + typedef ImageToMeshFilter Self; + typedef FilterObject Superclass; + typedef itk::SmartPointer< Self > Pointer; + typedef itk::SmartPointer< const Self > ConstPointer; - typedef Superclass::TParameter TParameter; - typedef Superclass::TParameters TParameters; + public: + itkTypeMacro( ImageToMeshFilter, FilterObject ); public: + virtual std::string GetClassName( ) const; + virtual std::string GetClassType( ) const; + + protected: ImageToMeshFilter( ); virtual ~ImageToMeshFilter( ); - virtual std::string GetClassName( ) const; + private: + // Purposely not implemented + ImageToMeshFilter( const Self& ); + Self& operator=( const Self& ); }; } // ecapseman