X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Dir2d.h;h=ec558769392d7b1f91a370edaa9ea172a8526d1d;hb=7f873aed4bae5a98dca078209699b54276b46fce;hp=906e1af0f6a82ce44a22c37e8ba81582ca231780;hpb=8dc74f82810d5f597b78633b457efb0ef4f89f9f;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Dir2d.h b/src/GeomAPI/GeomAPI_Dir2d.h index 906e1af0f..ec5587693 100644 --- a/src/GeomAPI/GeomAPI_Dir2d.h +++ b/src/GeomAPI/GeomAPI_Dir2d.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Dir2d.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -6,7 +8,7 @@ #define GeomAPI_Dir2d_H_ #include -#include +#include class GeomAPI_XY; @@ -21,7 +23,7 @@ class GEOMAPI_EXPORT GeomAPI_Dir2d : public GeomAPI_Interface /// Creation of direction by coordinates GeomAPI_Dir2d(const double theX, const double theY); /// Creation of direction by coordinates - GeomAPI_Dir2d(const boost::shared_ptr& theCoords); + GeomAPI_Dir2d(const std::shared_ptr& theCoords); /// returns X coordinate double x() const; @@ -29,12 +31,12 @@ class GEOMAPI_EXPORT GeomAPI_Dir2d : public GeomAPI_Interface double y() const; /// returns coordinates of the direction - const boost::shared_ptr xy(); + const std::shared_ptr xy(); /// result is a scalar product of directions - double dot(const boost::shared_ptr& theArg) const; + double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two directions - double cross(const boost::shared_ptr& theArg) const; + double cross(const std::shared_ptr& theArg) const; }; #endif