mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 08:50:33 +05:00
0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+ virtual bool IsMeshInfoCorrect();
This commit is contained in:
parent
9b54dd0f44
commit
6bf9c4aeaf
@ -973,6 +973,7 @@ namespace SMESH
|
||||
virtual SMESH::long_array* GetMeshInfo();
|
||||
virtual SMESH::array_of_ElementType* GetTypes();
|
||||
virtual SMESH::SMESH_Mesh_ptr GetMesh();
|
||||
virtual bool IsMeshInfoCorrect() { return true; }
|
||||
|
||||
/*!
|
||||
* \brief Object notified on change of predicate
|
||||
|
@ -434,6 +434,7 @@ struct _IDSource : public POA_SMESH::SMESH_IDSource
|
||||
SMESH::long_array* GetIDs() { return new SMESH::long_array( _ids ); }
|
||||
SMESH::long_array* GetMeshInfo() { return 0; }
|
||||
SMESH::SMESH_Mesh_ptr GetMesh() { return SMESH::SMESH_Mesh::_duplicate( _mesh ); }
|
||||
bool IsMeshInfoCorrect() { return true; }
|
||||
SMESH::array_of_ElementType* GetTypes()
|
||||
{
|
||||
SMESH::array_of_ElementType_var types = new SMESH::array_of_ElementType;
|
||||
|
Loading…
Reference in New Issue
Block a user