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