#ifndef __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__ #define __CPPLUGINSIMAGEMESH__TRIANGLEMESHTOBINARYIMAGEFILTER__H__ #include #include 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$