0025609: Clean up the duplicate classes in TKBO project
[occt.git] / src / BOPTools / BOPTools_EdgeSet.hxx
1 // Created by: Peter KURNEV
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #ifndef _BOPTools_EdgeSet_HeaderFile
16 #define _BOPTools_EdgeSet_HeaderFile
17
18 #include <Standard.hxx>
19 #include <Standard_DefineAlloc.hxx>
20 #include <Standard_Handle.hxx>
21
22 #include <NCollection_BaseAllocator.hxx>
23 #include <Standard_Boolean.hxx>
24 #include <TopoDS_Shape.hxx>
25 #include <TopTools_MapOfShape.hxx>
26 #include <TopTools_ListOfShape.hxx>
27 class TopoDS_Shape;
28 class TopoDS_Edge;
29
30
31
32 class BOPTools_EdgeSet 
33 {
34 public:
35
36   DEFINE_STANDARD_ALLOC
37
38   
39     BOPTools_EdgeSet();
40 virtual ~BOPTools_EdgeSet();
41   
42     BOPTools_EdgeSet(const Handle(NCollection_BaseAllocator)& theAllocator);
43   
44     void SetShape (const TopoDS_Shape& theS);
45   
46     const TopoDS_Shape& Shape() const;
47   
48     void AddEdge (const TopoDS_Edge& theEdge);
49   
50   Standard_EXPORT void AddEdges (const TopTools_ListOfShape& theLS);
51   
52     void AddEdges (const TopoDS_Shape& theFace);
53   
54     void Clear();
55   
56     void Get (TopTools_ListOfShape& theLS) const;
57   
58     Standard_Boolean Contains (const BOPTools_EdgeSet& theSet) const;
59
60
61
62
63 protected:
64
65
66
67   TopoDS_Shape myShape;
68   TopTools_MapOfShape myMap;
69   TopTools_ListOfShape myEdges;
70
71
72 private:
73
74
75
76
77
78 };
79
80
81 #include <BOPTools_EdgeSet.lxx>
82
83
84
85
86
87 #endif // _BOPTools_EdgeSet_HeaderFile