#ifndef __CPPLUGINS__INTERFACE__MESH__H__ #define __CPPLUGINS__INTERFACE__MESH__H__ #include #include #include #include #include class vtkMapper; namespace cpPlugins { namespace Interface { /** */ class cpPlugins_Interface_EXPORT Mesh : public DataObject { public: typedef Mesh Self; typedef DataObject Superclass; public: Mesh( ); virtual ~Mesh( ); virtual std::string GetClassName( ) const; virtual void SetDataObject( itk::DataObject* dobj ); vtkMapper* GetVTKMapper( ) const; protected: template< class M > void _Map( ); protected: /* itk::ProcessObject::Pointer m_Mesh2VTKMeshData; vtkMeshData* m_VTKMeshData; */ vtkMapper* m_Mapper; }; } // ecapseman } // ecapseman #endif // __CPPLUGINS__INTERFACE__MESH__H__ // eof - $RCSfile$