X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_DataMapOfShapeShape.h;h=40c447baed4d31ff5d5c083391ca584a90b4d50e;hb=3f19a9c3fb9c6fc844229db1f925a8a2b0b8a96f;hp=119cfda0ee5ad624fa213fa878d35108cf1005a3;hpb=0b06415cbaab3da89567c28ea4a7ae6ecf50511b;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h b/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h index 119cfda0e..40c447bae 100644 --- a/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h +++ b/src/GeomAPI/GeomAPI_DataMapOfShapeShape.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_DataMapOfShapeShape.h // Created: 28 Oct 2014 // Author: Sergey Zaritchny @@ -5,7 +7,7 @@ #ifndef GeomAPI_DataMapOfShapeShape_H_ #define GeomAPI_DataMapOfShapeShape_H_ -#include +#include #include class GeomAPI_Pnt; @@ -25,17 +27,23 @@ class GEOMAPI_EXPORT GeomAPI_DataMapOfShapeShape : public GeomAPI_Interface /// Clear void clear(); + /// Size of the map + int size(); + /// Adds the Key to the Map with the Item. Returns True if the Key was not already in the map - bool bind (const boost::shared_ptr& theKey, const 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 (const 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(const 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(const boost::shared_ptr& theKey); + bool unBind(std::shared_ptr theKey); + + /// Destructor + ~GeomAPI_DataMapOfShapeShape(); }; #endif