0029590: Coding - avoid usage of Standard_EXPORT attribute for inline methods
[occt.git] / src / BOPTools / BOPTools_ShapeSet.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_ShapeSet_HeaderFile
16 #define _BOPTools_ShapeSet_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 <TopAbs_ShapeEnum.hxx>
25 #include <TopoDS_Shape.hxx>
26 #include <TopTools_MapOfOrientedShape.hxx>
27 #include <TopTools_ListOfShape.hxx>
28 class TopoDS_Shape;
29 class TopoDS_Edge;
30
31
32 //! Implementation of some formal
33 //! opereations with a set of shapes
34 class BOPTools_ShapeSet 
35 {
36 public:
37
38   DEFINE_STANDARD_ALLOC
39
40   
41     BOPTools_ShapeSet();
42 virtual ~BOPTools_ShapeSet();
43   
44     BOPTools_ShapeSet(const Handle(NCollection_BaseAllocator)& theAllocator);
45   
46     void SetShape (const TopoDS_Shape& theS);
47   
48     const TopoDS_Shape& Shape() const;
49   
50   Standard_EXPORT void Add (const TopTools_ListOfShape& theLS);
51   
52     void Add (const TopoDS_Shape& theShape);
53   
54   Standard_EXPORT void Add (const TopoDS_Shape& theShape, const TopAbs_ShapeEnum theType);
55   
56     void AddEdge (const TopoDS_Edge& theEdge);
57   
58   Standard_EXPORT void AddEdges (const TopTools_ListOfShape& theLS);
59   
60     void AddEdges (const TopoDS_Shape& theFace);
61   
62     void Subtract (const BOPTools_ShapeSet& theSet);
63   void operator -= (const BOPTools_ShapeSet& theSet)
64 {
65   Subtract(theSet);
66 }
67   
68     void Clear();
69   
70     void Get (TopTools_ListOfShape& theLS) const;
71   
72     Standard_Boolean Contains (const BOPTools_ShapeSet& theSet) const;
73
74
75
76
77 protected:
78
79
80
81   TopoDS_Shape myShape;
82   TopTools_MapOfOrientedShape myMap;
83
84
85 private:
86
87
88
89
90
91 };
92
93
94 #include <BOPTools_ShapeSet.lxx>
95
96
97
98
99
100 #endif // _BOPTools_ShapeSet_HeaderFile