]> Creatis software - cpPlugins.git/blob - plugins/cpPluginsMeshSources/SphereSource.h
Bug smashed like a boss
[cpPlugins.git] / plugins / cpPluginsMeshSources / SphereSource.h
1 #ifndef __CPPLUGINSMESHSOURCES__SPHERESOURCE__H__
2 #define __CPPLUGINSMESHSOURCES__SPHERESOURCE__H__
3
4 #include <plugins/cpPluginsMeshSources/cpPluginsMeshSources_Export.h>
5 #include <cpPlugins/ProcessObject.h>
6
7 namespace cpPluginsMeshSources
8 {
9   /**
10    */
11   class cpPluginsMeshSources_EXPORT SphereSource
12     : public cpPlugins::ProcessObject
13   {
14   public:
15     typedef SphereSource                    Self;
16     typedef cpPlugins::ProcessObject        Superclass;
17     typedef itk::SmartPointer< Self >       Pointer;
18     typedef itk::SmartPointer< const Self > ConstPointer;
19
20   public:
21     itkNewMacro( Self );
22     itkTypeMacro( SphereSource, cpPlugins::ProcessObject );
23     cpPlugins_Id_Macro( SphereSource, MeshSources );
24
25   protected:
26     SphereSource( );
27     virtual ~SphereSource( );
28
29     virtual void _GenerateData( ) ITK_OVERRIDE;
30
31   private:
32     // Purposely not implemented
33     SphereSource( const Self& );
34     Self& operator=( const Self& );
35   };
36
37 } // ecapseman
38
39 #endif // __CPPLUGINSMESHSOURCES__SPHERESOURCE__H__
40
41 // eof - $RCSfile$