X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FMesh.h;h=20c56fb2aaaa45e5c6fcc881560bbd76c67dd550;hb=f989f3f91e2a17832652e345928eac26dcfb6d52;hp=241da35309cac492dfea071d86be5fa226af0407;hpb=cb833d2fface96e020fe91584d2206860a8174ee;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/Mesh.h b/lib/cpPlugins/Interface/Mesh.h index 241da35..20c56fb 100644 --- a/lib/cpPlugins/Interface/Mesh.h +++ b/lib/cpPlugins/Interface/Mesh.h @@ -1,13 +1,12 @@ #ifndef __CPPLUGINS__INTERFACE__MESH__H__ #define __CPPLUGINS__INTERFACE__MESH__H__ -#include -#include -#include #include #include -class vtkMapper; +#include +#include +#include namespace cpPlugins { @@ -29,35 +28,35 @@ namespace cpPlugins itkTypeMacro( Mesh, DataObject ); public: - virtual std::string GetClassName( ) const; - virtual void SetRealDataObject( itk::DataObject* dobj ); + template< class M > + inline void SetITK( itk::Object* object ); + + virtual void SetVTK( vtkObject* mesh ); - vtkMapper* GetVTKMapper( ) const; + virtual void CreateVTKActor( ); + virtual vtkActor* GetVTKActor( ); + virtual const vtkActor* GetVTKActor( ) const; protected: Mesh( ); virtual ~Mesh( ); - template< class M > - void _Map( ); - private: // Purposely not implemented Mesh( const Self& ); Self& operator=( const Self& ); protected: - /* - itk::ProcessObject::Pointer m_Mesh2VTKMeshData; - vtkMeshData* m_VTKMeshData; - */ - vtkMapper* m_Mapper; + vtkSmartPointer< vtkActor > m_Actor; + vtkSmartPointer< vtkPolyDataMapper > m_Mapper; }; } // ecapseman } // ecapseman +#include + #endif // __CPPLUGINS__INTERFACE__MESH__H__ // eof - $RCSfile$