X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_PlanarEdges.h;fp=src%2FGeomAPI%2FGeomAPI_PlanarEdges.h;h=1521d5addae1d5cc1004c43f12bf2381bde9c0e9;hb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;hp=af8422619f84f1e08f1b9cfe9a7be1cfd8a83c70;hpb=294640ac53df9e1fc697b007aca1e00259b5049a;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_PlanarEdges.h b/src/GeomAPI/GeomAPI_PlanarEdges.h index af8422619..1521d5add 100644 --- a/src/GeomAPI/GeomAPI_PlanarEdges.h +++ b/src/GeomAPI/GeomAPI_PlanarEdges.h @@ -10,7 +10,7 @@ #include "GeomAPI_Pnt.h" #include "GeomAPI_Dir.h" -#include +#include #include @@ -36,34 +36,34 @@ class GeomAPI_PlanarEdges : public GeomAPI_Shape return false; } - GEOMAPI_EXPORT void addEdge(boost::shared_ptr theEdge); - GEOMAPI_EXPORT std::list > getEdges(); + GEOMAPI_EXPORT void addEdge(std::shared_ptr theEdge); + GEOMAPI_EXPORT std::list > getEdges(); /// Returns True if the wire is defined in a plane GEOMAPI_EXPORT bool hasPlane() const { return myOrigin && myNorm && myDirX && myDirY; } /// Set/Get origin point - GEOMAPI_EXPORT void setOrigin(const boost::shared_ptr& theOrigin) + GEOMAPI_EXPORT void setOrigin(const std::shared_ptr& theOrigin) { myOrigin = theOrigin; } - GEOMAPI_EXPORT boost::shared_ptr origin() const { return myOrigin; } + GEOMAPI_EXPORT std::shared_ptr origin() const { return myOrigin; } /// Set/Get X direction vector - GEOMAPI_EXPORT void setDirX(const boost::shared_ptr& theDirX) { myDirX = theDirX; } - GEOMAPI_EXPORT boost::shared_ptr dirX() const { return myDirX; } + GEOMAPI_EXPORT void setDirX(const std::shared_ptr& theDirX) { myDirX = theDirX; } + GEOMAPI_EXPORT std::shared_ptr dirX() const { return myDirX; } /// Set/Get Y direction vector - GEOMAPI_EXPORT void setDirY(const boost::shared_ptr& theDirY) { myDirY = theDirY; } - GEOMAPI_EXPORT boost::shared_ptr dirY() const { return myDirY; } + GEOMAPI_EXPORT void setDirY(const std::shared_ptr& theDirY) { myDirY = theDirY; } + GEOMAPI_EXPORT std::shared_ptr dirY() const { return myDirY; } /// Set/Get Normal direction vector - GEOMAPI_EXPORT void setNorm(const boost::shared_ptr& theNorm) { myNorm = theNorm; } - GEOMAPI_EXPORT boost::shared_ptr norm() const { return myNorm; } + GEOMAPI_EXPORT void setNorm(const std::shared_ptr& theNorm) { myNorm = theNorm; } + GEOMAPI_EXPORT std::shared_ptr norm() const { return myNorm; } private: - boost::shared_ptr myOrigin; - boost::shared_ptr myDirX; - boost::shared_ptr myDirY; - boost::shared_ptr myNorm; + std::shared_ptr myOrigin; + std::shared_ptr myDirX; + std::shared_ptr myDirY; + std::shared_ptr myNorm; }; #endif