SHAPER 9.16.0
GeomAPI_DataMapOfShapeShape.h
1// Copyright (C) 2014-2026 CEA, EDF
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef GeomAPI_DataMapOfShapeShape_H_
21#define GeomAPI_DataMapOfShapeShape_H_
22
23#include <memory>
24#include <GeomAPI_Interface.h>
25
26#include <GeomAPI_Shape.h>
27
33{
34 public:
36 GEOMAPI_EXPORT
38
40 GEOMAPI_EXPORT
41 void clear();
42
44 GEOMAPI_EXPORT
45 int size();
46
48 GEOMAPI_EXPORT
49 bool bind (const std::shared_ptr<GeomAPI_Shape> theKey,
50 const std::shared_ptr<GeomAPI_Shape> theItem);
51
53 GEOMAPI_EXPORT void merge(const GeomAPI_DataMapOfShapeShape& theDataMap);
54
56 GEOMAPI_EXPORT void merge(const std::shared_ptr<GeomAPI_DataMapOfShapeShape> theDataMap);
57
59 GEOMAPI_EXPORT
60 bool isBound (const std::shared_ptr<GeomAPI_Shape> theKey);
61
63 GEOMAPI_EXPORT
64 const std::shared_ptr<GeomAPI_Shape> find(const std::shared_ptr<GeomAPI_Shape> theKey);
65
68 GEOMAPI_EXPORT
69 bool unBind(const std::shared_ptr<GeomAPI_Shape> theKey);
70
72 GEOMAPI_EXPORT
74};
75
76#endif
77
DataMap of Shape - Shape defined by TopoDS_Shapes.
Definition: GeomAPI_DataMapOfShapeShape.h:33
GEOMAPI_EXPORT void clear()
Clears map.
Definition: GeomAPI_DataMapOfShapeShape.cpp:29
GEOMAPI_EXPORT ~GeomAPI_DataMapOfShapeShape()
Destructor.
Definition: GeomAPI_DataMapOfShapeShape.cpp:91
GEOMAPI_EXPORT int size()
Size of the map.
Definition: GeomAPI_DataMapOfShapeShape.cpp:34
GEOMAPI_EXPORT void merge(const GeomAPI_DataMapOfShapeShape &theDataMap)
Merges two maps.
Definition: GeomAPI_DataMapOfShapeShape.cpp:49
GEOMAPI_EXPORT bool bind(const std::shared_ptr< GeomAPI_Shape > theKey, const std::shared_ptr< GeomAPI_Shape > theItem)
Adds theKey to me with theItem. Returns True if the Key was not already in the map.
Definition: GeomAPI_DataMapOfShapeShape.cpp:39
GEOMAPI_EXPORT const std::shared_ptr< GeomAPI_Shape > find(const std::shared_ptr< GeomAPI_Shape > theKey)
Definition: GeomAPI_DataMapOfShapeShape.cpp:75
GEOMAPI_EXPORT bool isBound(const std::shared_ptr< GeomAPI_Shape > theKey)
Definition: GeomAPI_DataMapOfShapeShape.cpp:66
GEOMAPI_EXPORT GeomAPI_DataMapOfShapeShape()
Constructor.
Definition: GeomAPI_DataMapOfShapeShape.cpp:26
GEOMAPI_EXPORT bool unBind(const std::shared_ptr< GeomAPI_Shape > theKey)
Removes the Key from the map.
Definition: GeomAPI_DataMapOfShapeShape.cpp:83
General base class for all interfaces in this package.
Definition: GeomAPI_Interface.h:38