Salome HOME
To show notebook variables in the Object Browser.
[modules/geom.git] / src / GEOM_I / GEOM_Object_i.cc
index 4a86443b64649dd578f5123654e9a25b3bff4c23..97ad13b5cc74d8ff7dff73d086344965d4237ec6 100644 (file)
@@ -360,3 +360,14 @@ bool GEOM_Object_i::IsShape()
 {
   return !_impl->GetValue().IsNull() && _impl->GetType() != GEOM_MARKER;
 }
+
+void GEOM_Object_i::SetParameters(const char* theParameters)
+{
+  _impl->SetParameters((char*)theParameters);
+}
+
+char* GEOM_Object_i::GetParameters()
+{
+  return CORBA::string_dup(_impl->GetParameters().ToCString());
+}
+