X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FImageToImageFilter.h;h=5da8bf2cb9a794224dc4fcdc09cfac1638dad050;hb=cb38f7928cd818697312a23a37c2ed1929da464d;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=8c23766af88a29c3e830299dffc4b95d9fe61df9;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/ImageToImageFilter.h b/lib/cpPlugins/Interface/ImageToImageFilter.h index e69de29..5da8bf2 100644 --- a/lib/cpPlugins/Interface/ImageToImageFilter.h +++ b/lib/cpPlugins/Interface/ImageToImageFilter.h @@ -0,0 +1,45 @@ +#ifndef __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__ +#define __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__ + +#include +#include + +namespace cpPlugins +{ + namespace Interface + { + /** + */ + class cpPlugins_Interface_EXPORT ImageToImageFilter + : public FilterObject + { + public: + typedef ImageToImageFilter Self; + typedef FilterObject Superclass; + typedef itk::SmartPointer< Self > Pointer; + typedef itk::SmartPointer< const Self > ConstPointer; + + public: + itkTypeMacro( ImageToImageFilter, FilterObject ); + + public: + virtual std::string GetClassName( ) const; + virtual std::string GetClassType( ) const; + + protected: + ImageToImageFilter( ); + virtual ~ImageToImageFilter( ); + + private: + // Purposely not implemented + ImageToImageFilter( const Self& ); + Self& operator=( const Self& ); + }; + + } // ecapseman + +} // ecapseman + +#endif // __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__ + +// eof - $RCSfile$