X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XY.h;h=3649db87d9166f8517658b3ff3dff86129b86978;hb=7f873aed4bae5a98dca078209699b54276b46fce;hp=5e0fef8c975b60b7dccf29a86289f988f167c842;hpb=cd9217d7e87997ec8bc150a6d8c389e742ca0f84;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XY.h b/src/GeomAPI/GeomAPI_XY.h index 5e0fef8c9..3649db87d 100644 --- a/src/GeomAPI/GeomAPI_XY.h +++ b/src/GeomAPI/GeomAPI_XY.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_XY.hxx // Created: 30 May 2014 // Author: Artem ZHIDKOV @@ -6,7 +8,7 @@ #define GeomAPI_XY_H_ #include -#include +#include /**\class GeomAPI_XY * \ingroup DataModel @@ -30,17 +32,17 @@ class GEOMAPI_EXPORT GeomAPI_XY : public GeomAPI_Interface void setY(const double theY); /// result is sum of coordinates of this and the given argument - const boost::shared_ptr added(const boost::shared_ptr& theArg); + const std::shared_ptr added(const std::shared_ptr& theArg); /// result is coordinates multiplied by the argument - const boost::shared_ptr multiplied(const double theArg); + const std::shared_ptr multiplied(const double theArg); /// result is a scalar product of two triplets - double dot(const boost::shared_ptr& theArg) const; + double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two triplets - double cross(const boost::shared_ptr& theArg) const; + double cross(const std::shared_ptr& theArg) const; /// Distance between two pairs - double distance(const boost::shared_ptr& theOther) const; + double distance(const std::shared_ptr& theOther) const; }; #endif