]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/SourceObject.h
0c036ce68947de9106e2dcc2d2b8981f06fc76f8
[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       typedef Superclass::TParameter  TParameter;
23       typedef Superclass::TParameters TParameters;
24
25     public:
26       itkTypeMacro( SourceObject, ProcessObject );
27
28     public:
29       virtual std::string GetClassName( ) const;
30       virtual std::string GetClassType( ) const;
31
32     protected:
33       SourceObject( );
34       virtual ~SourceObject( );
35
36     private:
37       // Purposely not implemented
38       SourceObject( const Self& );
39       Self& operator=( const Self& );
40     };
41
42   } // ecapseman
43
44 } // ecapseman
45
46 #endif // __CPPLUGINS__INTERFACE__SOURCEOBJECT__H__
47
48 // eof - $RCSfile$