]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAlgoAPI/GeomAlgoAPI_PointBuilder.h
Salome HOME
Boost has been removed from code
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_PointBuilder.h
index ec6e417e4c349b445456dcdd5f2c1388546be378..78639d7fdd4f7ce273b30fe0e00fc71b6aa1f202 100644 (file)
@@ -6,7 +6,7 @@
 #define GeomAlgoAPI_PointBuilder_H_
 
 #include <GeomAlgoAPI.h>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class GeomAPI_Shape;
 class GeomAPI_Pnt;
@@ -20,7 +20,7 @@ class GEOMALGOAPI_EXPORT GeomAlgoAPI_PointBuilder
 {
  public:
   /// Creates linear edge by two points
-  static boost::shared_ptr<GeomAPI_Shape> point(boost::shared_ptr<GeomAPI_Pnt> thePoint);
+  static std::shared_ptr<GeomAPI_Shape> point(std::shared_ptr<GeomAPI_Pnt> thePoint);
 };
 
 #endif