Salome HOME
Axis feature in Construction plugin is created
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_PointBuilder.h
index 7e24a360a5febebb786281232670e4246ea8dbc8..893c70c977fa77c999d15b11215584169ccf3f72 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAlgoAPI_PointBuilder.h
 // Created:     02 Jun 2014
 // Author:      Mikhail PONIKAROV
@@ -6,7 +8,7 @@
 #define GeomAlgoAPI_PointBuilder_H_
 
 #include <GeomAlgoAPI.h>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class GeomAPI_Shape;
 class GeomAPI_Pnt;
@@ -18,10 +20,12 @@ class GeomAPI_Pnt;
 
 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);
+ public:
+  /// Creates a shape by point
+  static std::shared_ptr<GeomAPI_Shape> point(std::shared_ptr<GeomAPI_Pnt> thePoint);
+
+  /// Return point by shape vertex
+  static std::shared_ptr<GeomAPI_Pnt> point(std::shared_ptr<GeomAPI_Shape> theVertex);
 };
 
 #endif