mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 17:50:34 +05:00
0020511: EDF 1101 SMESH : Add CGNS to Mesh Format Supported
+ SMESH_Group (SMESHDS_GroupBase* groupDS);
This commit is contained in:
parent
111c7a0cd2
commit
4913698067
@ -62,6 +62,18 @@ SMESH_Group::SMESH_Group (int theID,
|
||||
theType);
|
||||
}
|
||||
|
||||
//================================================================================
|
||||
/*!
|
||||
* \brief Constructor accesible to SMESH_Mesh only
|
||||
*/
|
||||
//================================================================================
|
||||
|
||||
SMESH_Group::SMESH_Group (SMESHDS_GroupBase* groupDS): myGroupDS( groupDS )
|
||||
{
|
||||
if ( myGroupDS )
|
||||
myName = myGroupDS->GetStoreName();
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
/*!
|
||||
*
|
||||
|
@ -49,6 +49,7 @@ class SMESH_EXPORT SMESH_Group
|
||||
const char* theName,
|
||||
const TopoDS_Shape& theShape = TopoDS_Shape(),
|
||||
const SMESH_PredicatePtr& thePredicate = SMESH_PredicatePtr());
|
||||
SMESH_Group (SMESHDS_GroupBase* groupDS);
|
||||
~SMESH_Group ();
|
||||
|
||||
void SetName (const char* theName) { myName = theName; }
|
||||
|
Loading…
Reference in New Issue
Block a user