]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/FilterObject.h
9f526c48d5167761dec85d04f5c23c60325890cb
[cpPlugins.git] / lib / cpPlugins / Interface / FilterObject.h
1 #ifndef __CPPLUGINS__INTERFACE__FILTEROBJECT__H__
2 #define __CPPLUGINS__INTERFACE__FILTEROBJECT__H__
3
4 #include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
5 #include <cpPlugins/Interface/ProcessObject.h>
6
7 namespace cpPlugins
8 {
9   namespace Interface
10   {
11     /**
12      */
13     class cpPlugins_Interface_EXPORT FilterObject
14       : public ProcessObject
15     {
16     public:
17       typedef FilterObject                    Self;
18       typedef ProcessObject                   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( FilterObject, ProcessObject );
27
28     public:
29       virtual std::string GetClassName( ) const;
30       virtual std::string GetClassType( ) const;
31
32     protected:
33       FilterObject( );
34       virtual ~FilterObject( );
35
36     private:
37       // Purposely not implemented
38       FilterObject( const Self& );
39       Self& operator=( const Self& );
40     };
41
42   } // ecapseman
43
44 } // ecapseman
45
46 #endif // __CPPLUGINS__INTERFACE__FILTEROBJECT__H__
47
48 // eof - $RCSfile$