0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / TNaming / TNaming_ShapesSet.hxx
1 // Created on: 1997-01-09
2 // Created by: Yves FRICAUD
3 // Copyright (c) 1997-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _TNaming_ShapesSet_HeaderFile
18 #define _TNaming_ShapesSet_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <TopTools_MapOfShape.hxx>
25 #include <TopAbs_ShapeEnum.hxx>
26 #include <Standard_Boolean.hxx>
27 #include <Standard_Integer.hxx>
28 class TopoDS_Shape;
29
30
31
32 class TNaming_ShapesSet 
33 {
34 public:
35
36   DEFINE_STANDARD_ALLOC
37
38   
39     TNaming_ShapesSet();
40   
41   Standard_EXPORT TNaming_ShapesSet(const TopoDS_Shape& S, const TopAbs_ShapeEnum Type = TopAbs_SHAPE);
42   
43   //! Removes all Shapes
44     void Clear();
45   
46   //! Adds the Shape <S>
47     Standard_Boolean Add (const TopoDS_Shape& S);
48   
49   //! Returns True  if <S> is in <me>
50     Standard_Boolean Contains (const TopoDS_Shape& S) const;
51   
52   //! Removes <S> in <me>.
53     Standard_Boolean Remove (const TopoDS_Shape& S);
54   
55   //! Adds the shapes contained in <Shapes>.
56   Standard_EXPORT void Add (const TNaming_ShapesSet& Shapes);
57   
58   //! Erases in <me> the shapes not
59   //! contained in <Shapes>
60   Standard_EXPORT void Filter (const TNaming_ShapesSet& Shapes);
61   
62   //! Removes in <me> the shapes contained in <Shapes>
63   Standard_EXPORT void Remove (const TNaming_ShapesSet& Shapes);
64   
65     Standard_Boolean IsEmpty() const;
66   
67     Standard_Integer NbShapes() const;
68   
69     TopTools_MapOfShape& ChangeMap();
70   
71     const TopTools_MapOfShape& Map() const;
72
73
74
75
76 protected:
77
78
79
80
81
82 private:
83
84
85
86   TopTools_MapOfShape myMap;
87
88
89 };
90
91
92 #include <TNaming_ShapesSet.lxx>
93
94
95
96
97
98 #endif // _TNaming_ShapesSet_HeaderFile