Salome HOME
Fix for bug of RestoreGivenSubShapes() function's dump coming from SALOME Community...
authorvsr <vsr@opencascade.com>
Wed, 5 Jul 2017 15:16:55 +0000 (18:16 +0300)
committervsr <vsr@opencascade.com>
Wed, 5 Jul 2017 15:16:55 +0000 (18:16 +0300)
src/GEOM/GEOM_PythonDump.hxx

index 7736c343dd21c7f78536eaa99a2a302da6b0b415..633fd44d049274885b1937b0eca2be8947400243 100644 (file)
@@ -61,20 +61,20 @@ namespace GEOM
     Standard_EXPORT TPythonDump& operator<< (const char* theArg);
     Standard_EXPORT TPythonDump& operator<< (const TCollection_AsciiString theArg);
     Standard_EXPORT TPythonDump& operator<< (const TopAbs_ShapeEnum theArg);
-    Standard_EXPORT TPythonDump& operator<< (const Handle(GEOM_BaseObject)& theObject);
+    Standard_EXPORT TPythonDump& operator<< (const Handle(::GEOM_BaseObject)& theObject);
     Standard_EXPORT TPythonDump& operator<< (const Handle(TColStd_HSequenceOfTransient)& objects);
-    Standard_EXPORT TPythonDump& operator<< (const std::list<Handle(GEOM_Object)>& theObjects);
+    Standard_EXPORT TPythonDump& operator<< (const std::list<Handle(::GEOM_Object)>& theObjects);
     Standard_EXPORT TPythonDump& operator<< (const GEOM_BaseObject* theObject);
   };
 
   /*! Returns an object from two given, which has the latest entry
    */
-  Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(GEOM_Object)& theObj1,
-                                      const Handle(GEOM_Object)& theObj2);
+  Standard_EXPORT Handle(::GEOM_Object) GetCreatedLast (const Handle(::GEOM_Object)& theObj1,
+                                      const Handle(::GEOM_Object)& theObj2);
 
   /*! Returns an object from \a theObjects, which has the latest entry
    */
-  Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
+  Standard_EXPORT Handle(::GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
 }
 
 #endif