Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / GeomAPI / GeomAPI_Dir2d.h
index 4c9e6fc14a50cb194578190502f88e9f3e06b7ae..ec558769392d7b1f91a370edaa9ea172a8526d1d 100644 (file)
@@ -1,12 +1,14 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_Dir2d.hxx
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef GeomAPI_Dir2d_HeaderFile
-#define GeomAPI_Dir2d_HeaderFile
+#ifndef GeomAPI_Dir2d_H_
+#define GeomAPI_Dir2d_H_
 
 #include <GeomAPI_Interface.h>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class GeomAPI_XY;
 
@@ -15,13 +17,13 @@ class GeomAPI_XY;
  * \brief 2D direction defined by three normalized coordinates
  */
 
-class GEOMAPI_EXPORT GeomAPI_Dir2d: public GeomAPI_Interface
+class GEOMAPI_EXPORT GeomAPI_Dir2d : public GeomAPI_Interface
 {
-public:
+ public:
   /// Creation of direction by coordinates
   GeomAPI_Dir2d(const double theX, const double theY);
   /// Creation of direction by coordinates
-  GeomAPI_Dir2d(const boost::shared_ptr<GeomAPI_XY>& theCoords);
+  GeomAPI_Dir2d(const std::shared_ptr<GeomAPI_XY>& theCoords);
 
   /// returns X coordinate
   double x() const;
@@ -29,12 +31,12 @@ public:
   double y() const;
 
   /// returns coordinates of the direction
-  const boost::shared_ptr<GeomAPI_XY> xy();
+  const std::shared_ptr<GeomAPI_XY> xy();
 
   /// result is a scalar product of directions
-  double dot(const boost::shared_ptr<GeomAPI_Dir2d>& theArg) const;
+  double dot(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
   /// result is a cross product of two directions
-  double cross(const boost::shared_ptr<GeomAPI_Dir2d>& theArg) const;
+  double cross(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
 };
 
 #endif