]> Creatis software - cpPlugins.git/blob - plugins/cpPluginsImageMeshFilters/MarchingCubes.h
...
[cpPlugins.git] / plugins / cpPluginsImageMeshFilters / MarchingCubes.h
1 #ifndef __CPPLUGINSIMAGEMESH__MARCHINGCUBES__H__
2 #define __CPPLUGINSIMAGEMESH__MARCHINGCUBES__H__
3
4 #include <plugins/cpPluginsImageMeshFilters/cpPluginsImageMeshFilters_Export.h>
5 #include <cpPlugins/ProcessObject.h>
6
7 namespace cpPluginsImageMeshFilters
8 {
9   /**
10    */
11   class cpPluginsImageMeshFilters_EXPORT MarchingCubes
12     : public cpPlugins::ProcessObject
13   {
14   public:
15     typedef MarchingCubes                   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( MarchingCubes, cpPlugins::ProcessObject );
23     cpPlugins_Id_Macro( MarchingCubes, ImageToMeshFilters );
24
25   protected:
26     MarchingCubes( );
27     virtual ~MarchingCubes( );
28
29     virtual void _GenerateData( ) ITK_OVERRIDE;
30
31   private:
32     // Purposely not implemented
33     MarchingCubes( const Self& );
34     Self& operator=( const Self& );
35   };
36
37 } // ecapseman
38
39 #endif // __CPPLUGINSIMAGEMESH__MARCHINGCUBES__H__
40
41 // eof - $RCSfile$