Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_MakeShapeCustom.h
index 77bfac0e231e924f22a962e86c53b4da807bb304..6fca968ea9c7fad8d0151a2f8449b349744e7a29 100644 (file)
@@ -37,29 +37,29 @@ public:
   GEOMALGOAPI_EXPORT GeomAlgoAPI_MakeShapeCustom();
 
   /// Sets result shape.
-  GEOMALGOAPI_EXPORT void setResult(const std::shared_ptr<GeomAPI_Shape> theShape);
+  GEOMALGOAPI_EXPORT void setResult(const GeomShapePtr theShape);
 
   /// Adds modified shape.
-  GEOMALGOAPI_EXPORT bool addModified(const std::shared_ptr<GeomAPI_Shape> theBase,
-                                      const std::shared_ptr<GeomAPI_Shape> theResult);
+  GEOMALGOAPI_EXPORT bool addModified(const GeomShapePtr theOldShape,
+                                      const GeomShapePtr theNewShape);
 
   /// Adds generated shape.
-  GEOMALGOAPI_EXPORT bool addGenerated(const std::shared_ptr<GeomAPI_Shape> theBase,
-                                       const std::shared_ptr<GeomAPI_Shape> theResult);
+  GEOMALGOAPI_EXPORT bool addGenerated(const GeomShapePtr theOldShape,
+                                       const GeomShapePtr theNewShape);
 
   /// Adds deleted shape.
-  GEOMALGOAPI_EXPORT bool addDeleted(const std::shared_ptr<GeomAPI_Shape> theShape);
+  GEOMALGOAPI_EXPORT bool addDeleted(const GeomShapePtr theOldShape);
 
   /// \return the list of shapes generated from the shape theShape
-  GEOMALGOAPI_EXPORT void generated(const std::shared_ptr<GeomAPI_Shape> theShape,
-                                            ListOfShape& theHistory);
+  GEOMALGOAPI_EXPORT void generated(const GeomShapePtr theOldShape,
+                                    ListOfShape& theNewShapes);
 
   /// \return the list of shapes modified from the shape theShape
-  GEOMALGOAPI_EXPORT void modified(const std::shared_ptr<GeomAPI_Shape> theShape,
-                                           ListOfShape& theHistory);
+  GEOMALGOAPI_EXPORT void modified(const GeomShapePtr theShape,
+                                   ListOfShape& theNewShapes);
 
   /// \return whether the shape is deleted
-  GEOMALGOAPI_EXPORT bool isDeleted(const std::shared_ptr<GeomAPI_Shape> theShape);
+  GEOMALGOAPI_EXPORT bool isDeleted(const GeomShapePtr theOldShape);
 
 private:
   GeomAPI_DataMapOfShapeMapOfShapes myGenerated;