#ifndef __CPPLUGINSIMAGEMESH__MARCHINGCUBES__H__ #define __CPPLUGINSIMAGEMESH__MARCHINGCUBES__H__ #include #include namespace cpPluginsImageMeshFilters { /** */ class cpPluginsImageMeshFilters_EXPORT MarchingCubes : public cpPlugins::ProcessObject { cpPluginsObject; public: typedef MarchingCubes Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( MarchingCubes, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( MarchingCubes, ImageToMeshFilters ); protected: MarchingCubes( ); virtual ~MarchingCubes( ); virtual void _GenerateData( ) ITK_OVERRIDE; private: // Purposely not implemented MarchingCubes( const Self& ); Self& operator=( const Self& ); }; } // ecapseman #endif // __CPPLUGINSIMAGEMESH__MARCHINGCUBES__H__ // eof - $RCSfile$