]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Added 2 methods to StudyManger (ConvertObjectToString and ConvertStringToObject)
authorsrn <srn@opencascade.com>
Mon, 28 Mar 2005 06:00:04 +0000 (06:00 +0000)
committersrn <srn@opencascade.com>
Mon, 28 Mar 2005 06:00:04 +0000 (06:00 +0000)
idl/SALOMEDS.idl

index 23c0dc57ba898e34c1acc31fc86c909e4a526c64..6b22c076421ac9bf5d1bca23f3e95a83b10f4eec 100644 (file)
@@ -405,6 +405,7 @@ during each working session.
     Defines the instance to the %SComponent.
 */
     void       DefineComponentInstance (in SComponent aComponent,in Object ComponentIOR) raises(LockProtection);
+        
 /*! \brief Deletion of a %SComponent
 
   Removes a %SComponent.
@@ -764,6 +765,20 @@ Gets the list of open studies
     an object into a study, which is protected for modifications.
 */
     SObject Paste(in SObject theObject) raises (SALOMEDS::StudyBuilder::LockProtection);
+
+/*! \brief Object conversion.
+
+    Converts an object into IOR.
+    \return    IOR
+*/
+    string ConvertObjectToIOR(in Object theObject);
+/*! \brief Object conversion.
+           
+    Converts IOR into an object.
+    \return    An object
+*/
+    Object ConvertIORToObject(in string theIOR); 
+
   };