Salome HOME
Boost has been removed from code
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintDistance.h
index b5981d017f24d418bcb0f0e3811f8cb07906a72e..8ac80c3139df4e41830ff70033cc6095d987cb24 100644 (file)
@@ -64,14 +64,14 @@ class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase
 };
 
 /// Obtain the point object from specified constraint parameter
-boost::shared_ptr<GeomDataAPI_Point2D> getFeaturePoint(DataPtr theData,
+std::shared_ptr<GeomDataAPI_Point2D> getFeaturePoint(DataPtr theData,
                                                        const std::string& theAttribute);
 
-boost::shared_ptr<SketchPlugin_Line> getFeatureLine(DataPtr theData,
+std::shared_ptr<SketchPlugin_Line> getFeatureLine(DataPtr theData,
                                                     const std::string& theAttribute);
 
-boost::shared_ptr<GeomAPI_Pnt2d> getProjectionPoint(
-    const boost::shared_ptr<SketchPlugin_Line>& theLine,
-    const boost::shared_ptr<GeomAPI_Pnt2d>& thePoint);
+std::shared_ptr<GeomAPI_Pnt2d> getProjectionPoint(
+    const std::shared_ptr<SketchPlugin_Line>& theLine,
+    const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
 
 #endif