]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/ImageToImageFilter.h
d7ac57a14000f6013319191840cf2f30d9a48cfa
[cpPlugins.git] / lib / cpPlugins / Interface / ImageToImageFilter.h
1 #ifndef __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__
2 #define __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__
3
4 #include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
5 #include <cpPlugins/Interface/FilterObject.h>
6
7 namespace cpPlugins
8 {
9   namespace Interface
10   {
11     /**
12      */
13     class cpPlugins_Interface_EXPORT ImageToImageFilter
14       : public FilterObject
15     {
16     public:
17       typedef ImageToImageFilter              Self;
18       typedef FilterObject                    Superclass;
19       typedef itk::SmartPointer< Self >       Pointer;
20       typedef itk::SmartPointer< const Self > ConstPointer;
21
22       typedef Superclass::TParameter  TParameter;
23       typedef Superclass::TParameters TParameters;
24
25     public:
26       itkTypeMacro( ImageToImageFilter, FilterObject );
27
28     public:
29       virtual std::string GetClassName( ) const;
30       virtual std::string GetClassType( ) const;
31
32     protected:
33       ImageToImageFilter( );
34       virtual ~ImageToImageFilter( );
35
36     private:
37       // Purposely not implemented
38       ImageToImageFilter( const Self& );
39       Self& operator=( const Self& );
40     };
41
42   } // ecapseman
43
44 } // ecapseman
45
46 #endif // __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__
47
48 // eof - $RCSfile$