]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Pipeline/Functor.h
...
[cpPlugins.git] / lib / cpPlugins / Pipeline / Functor.h
1 #ifndef __cpPlugins__Pipeline__Functor__h__
2 #define __cpPlugins__Pipeline__Functor__h__
3
4 #include <cpPlugins/Pipeline/ProcessObject.h>
5
6 // -------------------------------------------------------------------------
7 namespace cpPlugins
8 {
9   namespace Pipeline
10   {
11     /**
12      */
13     class cpPlugins_EXPORT Functor
14       : public ProcessObject
15     {
16     public:
17       typedef Functor                         Self;
18       typedef ProcessObject                   Superclass;
19       typedef itk::SmartPointer< Self >       Pointer;
20       typedef itk::SmartPointer< const Self > ConstPointer;
21
22     public:
23       itkTypeMacro( Functor, ProcessObject );
24       cpPlugins_Id_Macro( Functor, Object );
25
26     protected:
27       Functor( );
28       virtual ~Functor( );
29
30     private:
31       // Purposely not implemented
32       Functor( const Self& );
33       Self& operator=( const Self& );
34     };
35
36   } // ecapseman
37
38 } // ecapseman
39
40 #endif // __cpPlugins__Pipeline__Functor__h__
41
42 // eof - $RCSfile$