// File : SMESH_Group.cxx
// Author : Michael Sazonov (OCC)
// Module : SMESH
-// $Header$
//
#include "SMESH_Group.hxx"
#include "SMESH_Mesh.hxx"
myGroupDS = new SMESHDS_Group (theID,
const_cast<SMESH_Mesh*>(theMesh)->GetMeshDS(),
theType);
+ myGroupDS->SetStoreName( theName );
}
//================================================================================
//=============================================================================
/*!
- *
+ * Destructor deletes myGroupDS
*/
//=============================================================================
{
delete myGroupDS; myGroupDS=0;
}
+
+//================================================================================
+/*!
+ * \brief Sets a new name
+ */
+//================================================================================
+
+void SMESH_Group::SetName (const char* theName)
+{
+ myName = theName;
+ myGroupDS->SetStoreName( theName );
+}
SMESH_Group (SMESHDS_GroupBase* groupDS);
~SMESH_Group ();
- void SetName (const char* theName) { myName = theName; }
+ void SetName (const char* theName);
const char* GetName () const { return myName.c_str(); }