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