X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_DataMapOfShapeShape.h;h=94a35b780ea9c087acf1ac4b39a07d3da7681a84;hb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;hp=20b63903afe1b72998522857b96d60d7fcf4eaf4;hpb=294640ac53df9e1fc697b007aca1e00259b5049a;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h b/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h index 20b63903a..94a35b780 100644 --- a/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h +++ b/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h @@ -5,7 +5,7 @@ #ifndef GeomAPI_DataMapOfShapeShape_H_ #define GeomAPI_DataMapOfShapeShape_H_ -#include +#include #include class GeomAPI_Pnt; @@ -26,16 +26,16 @@ class GEOMAPI_EXPORT GeomAPI_DataMapOfShapeShape : public GeomAPI_Interface void clear(); /// Adds the Key to the Map with the Item. Returns True if the Key was not already in the map - bool bind (boost::shared_ptr theKey, boost::shared_ptr theItem); + bool bind (std::shared_ptr theKey, std::shared_ptr theItem); /// Returns true if theKey is stored in the map. - bool isBound (boost::shared_ptr theKey); + bool isBound (std::shared_ptr theKey); /// Returns the Item stored with the Key in the Map. - const boost::shared_ptr find(boost::shared_ptr theKey); + const std::shared_ptr find(std::shared_ptr theKey); /// Removes the Key from the map. Returns true if the Key was in the Map - bool unBind(boost::shared_ptr theKey); + bool unBind(std::shared_ptr theKey); /// Destructor ~GeomAPI_DataMapOfShapeShape();