mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-13 00:34:34 +05:00
Initialize members in the constructor of SMESH_Mesh being a base of some descendant class
This commit is contained in:
parent
8e3111f237
commit
4830d553eb
@ -105,6 +105,23 @@ SMESH_Mesh::SMESH_Mesh(int theLocalId,
|
||||
_myMeshDS->ShapeToMesh( PseudoShape() );
|
||||
}
|
||||
|
||||
//================================================================================
|
||||
/*!
|
||||
* \brief Constructor of SMESH_Mesh being a base of some descendant class
|
||||
*/
|
||||
//================================================================================
|
||||
|
||||
SMESH_Mesh::SMESH_Mesh():
|
||||
_groupId( 0 ), _nbSubShapes( 0 )
|
||||
{
|
||||
_myMeshDS = 0;
|
||||
_isShapeToMesh = false;
|
||||
_isAutoColor = false;
|
||||
_isModified = false;
|
||||
_shapeDiagonal = 0.0;
|
||||
_rmGroupCallUp = 0;
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
/*!
|
||||
*
|
||||
|
@ -332,7 +332,7 @@ protected:
|
||||
TRmGroupCallUp* _rmGroupCallUp;
|
||||
|
||||
protected:
|
||||
SMESH_Mesh() {};
|
||||
SMESH_Mesh();
|
||||
SMESH_Mesh(const SMESH_Mesh&) {};
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user