]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/SourceObject.h
5a030b249463df6791b8a992f5643cfe9ea2a642
[cpPlugins.git] / lib / cpPlugins / Interface / SourceObject.h
1 #ifndef __CPPLUGINS__INTERFACE__SOURCEOBJECT__H__
2 #define __CPPLUGINS__INTERFACE__SOURCEOBJECT__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 SourceObject
14       : public ProcessObject
15     {
16     public:
17       typedef SourceObject                    Self;
18       typedef ProcessObject                   Superclass;
19       typedef itk::SmartPointer< Self >       Pointer;
20       typedef itk::SmartPointer< const Self > ConstPointer;
21
22     public:
23       itkTypeMacro( SourceObject, ProcessObject );
24
25     protected:
26       SourceObject( );
27       virtual ~SourceObject( );
28
29     private:
30       // Purposely not implemented
31       SourceObject( const Self& );
32       Self& operator=( const Self& );
33     };
34
35   } // ecapseman
36
37 } // ecapseman
38
39 #endif // __CPPLUGINS__INTERFACE__SOURCEOBJECT__H__
40
41 // eof - $RCSfile$