Salome HOME
Debug
[modules/smesh.git] / src / SMESH / SMESH_Mesh.cxx
index 67d78b4e683574b0f6bd43cf9db7e93cb6981126..3e7539353ad40cd29034809f7022f1c1f44a26b6 100644 (file)
@@ -1580,3 +1580,20 @@ SMESH_Group* SMESH_Mesh::ConvertToStandalone ( int theGroupID )
   return aGroup;
 }
 
+//=======================================================================
+//function : SetParameters
+//purpose  : 
+//=======================================================================
+void SMESH_Mesh::SetParameters(const std::list<std::string>& theParameters)
+{
+  _parameters = theParameters;
+}
+
+//=======================================================================
+//function : GetParameters
+//purpose  : 
+//=======================================================================
+std::list<std::string> SMESH_Mesh::GetParameters() const
+{
+  return _parameters;
+}