]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Plugins/BasicFilters/SphereMeshSource.h
Widget integration (step 5/6): generic widget controller finished and tested on linux...
[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       cpPlugins_Id_Macro(
26         cpPlugins::BasicFilters::SphereMeshSource, "MeshSource"
27         );
28
29     protected:
30       SphereMeshSource( );
31       virtual ~SphereMeshSource( );
32
33       virtual std::string _GenerateData( );
34
35     private:
36       // Purposely not implemented
37       SphereMeshSource( const Self& );
38       Self& operator=( const Self& );
39     };
40
41     // ---------------------------------------------------------------------
42     CPPLUGINS_INHERIT_PROVIDER( SphereMeshSource );
43
44   } // ecapseman
45
46 } // ecapseman
47
48 #endif // __CPPLUGINS__PLUGINS__SPHEREMESHSOURCE__H__
49
50 // eof - $RCSfile$