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:
eap 2012-02-24 10:33:21 +00:00
parent abb0ef62f4
commit d8cd2598fc

View File

@ -87,8 +87,10 @@ struct SMESH_subMeshEventListenerData
{
bool myIsDeletable; //!< if true, it will be deleted by SMESH_subMesh
int myType; //!< to recognize data type
std::list<SMESH_subMesh*> mySubMeshes; //!< generally: submeshes depending
// on the one storing this data
std::list<SMESH_subMesh*> mySubMeshes; /* generally: submeshes depending
on the one storing this data;
!! they are used to track intermesh
dependencies at mesh loading as well !! */
public:
SMESH_subMeshEventListenerData(bool isDeletable):myIsDeletable(isDeletable) {}
virtual ~SMESH_subMeshEventListenerData() {}