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