]> Creatis software - cpPlugins.git/blobdiff - plugins/ImageMeshFilters/TriangleMeshToBinaryImageFilter.h
...
[cpPlugins.git] / plugins / ImageMeshFilters / TriangleMeshToBinaryImageFilter.h
diff --git a/plugins/ImageMeshFilters/TriangleMeshToBinaryImageFilter.h b/plugins/ImageMeshFilters/TriangleMeshToBinaryImageFilter.h
deleted file mode 100644 (file)
index 2109459..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__
-#define __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__
-
-#include <plugins/cpPluginsImageMeshFilters_Export.h>
-#include <cpPlugins/ProcessObject.h>
-
-namespace cpPluginsImageMeshFilters
-{
-  /**
-   */
-  class cpPluginsImageMeshFilters_EXPORT TriangleMeshToBinaryImageFilter
-    : public cpPlugins::ProcessObject
-  {
-    cpPluginsObject;
-  public:
-    typedef TriangleMeshToBinaryImageFilter Self;
-    typedef cpPlugins::ProcessObject        Superclass;
-    typedef itk::SmartPointer< Self >       Pointer;
-    typedef itk::SmartPointer< const Self > ConstPointer;
-
-  public:
-    itkNewMacro( Self );
-    itkTypeMacro( TriangleMeshToBinaryImageFilter, cpPlugins::ProcessObject );
-    cpPlugins_Id_Macro( TriangleMeshToBinaryImageFilter, MeshToImageFilters );
-
-  protected:
-    TriangleMeshToBinaryImageFilter( );
-    virtual ~TriangleMeshToBinaryImageFilter( );
-
-    virtual void _GenerateData( ) ITK_OVERRIDE;
-
-    template< class _TMesh >
-      inline void _GD0( _TMesh* mesh );
-
-    template< class _TMesh, class _TPixel >
-      inline void _GD1( _TMesh* mesh );
-
-  private:
-    // Purposely not implemented
-    TriangleMeshToBinaryImageFilter( const Self& );
-    Self& operator=( const Self& );
-  };
-
-} // ecapseman
-
-#endif // __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__
-
-// eof - $RCSfile$