]> Creatis software - cpPlugins.git/blob - plugins/ImageMeshFilters/TriangleMeshToBinaryImageFilter.h
Build procedure simplified
[cpPlugins.git] / plugins / ImageMeshFilters / TriangleMeshToBinaryImageFilter.h
1 #ifndef __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__
2 #define __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__
3
4 #include <plugins/cpPluginsImageMeshFilters_Export.h>
5 #include <cpPlugins/ProcessObject.h>
6
7 namespace cpPluginsImageMeshFilters
8 {
9   /**
10    */
11   class cpPluginsImageMeshFilters_EXPORT TriangleMeshToBinaryImageFilter
12     : public cpPlugins::ProcessObject
13   {
14     cpPluginsObject;
15   public:
16     typedef TriangleMeshToBinaryImageFilter 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( TriangleMeshToBinaryImageFilter, cpPlugins::ProcessObject );
24     cpPlugins_Id_Macro( TriangleMeshToBinaryImageFilter, MeshToImageFilters );
25
26   protected:
27     TriangleMeshToBinaryImageFilter( );
28     virtual ~TriangleMeshToBinaryImageFilter( );
29
30     virtual void _GenerateData( ) ITK_OVERRIDE;
31
32     template< class _TMesh >
33       inline void _GD0( _TMesh* mesh );
34
35     template< class _TMesh, class _TPixel >
36       inline void _GD1( _TMesh* mesh );
37
38   private:
39     // Purposely not implemented
40     TriangleMeshToBinaryImageFilter( const Self& );
41     Self& operator=( const Self& );
42   };
43
44 } // ecapseman
45
46 #endif // __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__
47
48 // eof - $RCSfile$