#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; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( Mesh, DataObject ); public: virtual std::string GetClassName( ) const; virtual void SetRealDataObject( itk::DataObject* dobj ); vtkMapper* GetVTKMapper( ) const; protected: Mesh( ); virtual ~Mesh( ); template< class M > void _Map( ); private: // Purposely not implemented Mesh( const Self& ); Self& operator=( const Self& ); protected: vtkMapper* m_Mapper; }; } // ecapseman } // ecapseman #endif // __CPPLUGINS__INTERFACE__MESH__H__ // eof - $RCSfile$