]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Plugins/BasicFilters/SphereMeshSource.h
6ea0aaebcd44aa7f832b479a5fb5dbfd8f995eb2
[cpPlugins.git] / lib / cpPlugins / Plugins / BasicFilters / SphereMeshSource.h
1 #ifndef __CPPLUGINS__PLUGINS__SPHEREMESHSOURCE__H__
2 #define __CPPLUGINS__PLUGINS__SPHEREMESHSOURCE__H__
3
4 #include <cpPlugins/BasicFilters/cpPluginsBasicFilters_Export.h>
5 #include <cpPlugins/Interface/BaseProcessObjects.h>
6
7 namespace cpPlugins
8 {
9   namespace BasicFilters
10   {
11     /**
12      */
13     class cpPluginsBasicFilters_EXPORT SphereMeshSource
14       : public cpPlugins::Interface::MeshSource
15     {
16     public:
17       typedef SphereMeshSource                 Self;
18       typedef cpPlugins::Interface::MeshSource Superclass;
19       typedef itk::SmartPointer< Self >        Pointer;
20       typedef itk::SmartPointer< const Self >  ConstPointer;
21
22     public:
23       itkNewMacro( Self );
24       itkTypeMacro( SphereMeshSource, cpPluginsInterfaceMeshSource );
25
26     protected:
27       SphereMeshSource( );
28       virtual ~SphereMeshSource( );
29
30       virtual std::string _GenerateData( );
31
32     private:
33       // Purposely not implemented
34       SphereMeshSource( const Self& );
35       Self& operator=( const Self& );
36     };
37
38     // ---------------------------------------------------------------------
39     CPPLUGINS_INHERIT_PROVIDER( SphereMeshSource );
40
41   } // ecapseman
42
43 } // ecapseman
44
45 #endif // __CPPLUGINS__PLUGINS__SPHEREMESHSOURCE__H__
46
47 // eof - $RCSfile$