mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 18:18:34 +05:00
0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
add a note on usage of mySubMeshes while mesh loading
This commit is contained in:
parent
abb0ef62f4
commit
d8cd2598fc
@ -87,8 +87,10 @@ struct SMESH_subMeshEventListenerData
|
|||||||
{
|
{
|
||||||
bool myIsDeletable; //!< if true, it will be deleted by SMESH_subMesh
|
bool myIsDeletable; //!< if true, it will be deleted by SMESH_subMesh
|
||||||
int myType; //!< to recognize data type
|
int myType; //!< to recognize data type
|
||||||
std::list<SMESH_subMesh*> mySubMeshes; //!< generally: submeshes depending
|
std::list<SMESH_subMesh*> mySubMeshes; /* generally: submeshes depending
|
||||||
// on the one storing this data
|
on the one storing this data;
|
||||||
|
!! they are used to track intermesh
|
||||||
|
dependencies at mesh loading as well !! */
|
||||||
public:
|
public:
|
||||||
SMESH_subMeshEventListenerData(bool isDeletable):myIsDeletable(isDeletable) {}
|
SMESH_subMeshEventListenerData(bool isDeletable):myIsDeletable(isDeletable) {}
|
||||||
virtual ~SMESH_subMeshEventListenerData() {}
|
virtual ~SMESH_subMeshEventListenerData() {}
|
||||||
|
Loading…
Reference in New Issue
Block a user