0031004: Coding - eliminate warnings issued by gcc 9.1.0
[occt.git] / src / BOPTools / BOPTools_Set.hxx
CommitLineData
42cf5bc1 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_Set_HeaderFile
16#define _BOPTools_Set_HeaderFile
17
18#include <Standard.hxx>
19#include <Standard_DefineAlloc.hxx>
20#include <Standard_Handle.hxx>
21
1155d05a 22#include <NCollection_BaseAllocator.hxx>
42cf5bc1 23#include <TopoDS_Shape.hxx>
24#include <Standard_Integer.hxx>
25#include <TopAbs_ShapeEnum.hxx>
26#include <Standard_Boolean.hxx>
1155d05a 27#include <TopTools_ListOfShape.hxx>
42cf5bc1 28class TopoDS_Shape;
29
30
31
32class BOPTools_Set
33{
34public:
35
36 DEFINE_STANDARD_ALLOC
37
38
39 Standard_EXPORT BOPTools_Set();
40Standard_EXPORT virtual ~BOPTools_Set();
41
1155d05a 42 Standard_EXPORT BOPTools_Set(const Handle(NCollection_BaseAllocator)& theAllocator);
158f2931 43
44 //! Copy constructor.
45 Standard_EXPORT BOPTools_Set (const BOPTools_Set& theOther);
46
42cf5bc1 47 Standard_EXPORT BOPTools_Set& Assign (const BOPTools_Set& Other);
48BOPTools_Set& operator = (const BOPTools_Set& Other)
49{
50 return Assign(Other);
51}
52
53 Standard_EXPORT const TopoDS_Shape& Shape() const;
54
55 Standard_EXPORT void Add (const TopoDS_Shape& theS, const TopAbs_ShapeEnum theType);
56
57 Standard_EXPORT Standard_Integer NbShapes() const;
58
59 Standard_EXPORT Standard_Boolean IsEqual (const BOPTools_Set& aOther) const;
42cf5bc1 60
2b2be3fb 61 //! Computes a hash code for this set, in the range [1, theUpperBound]
62 //! @param theUpperBound the upper bound of the range a computing hash code must be within
63 //! @return a computed hash code, in the range [1, theUpperBound]
64 Standard_EXPORT Standard_Integer HashCode (Standard_Integer theUpperBound) const;
42cf5bc1 65
66
67protected:
68
69
70 Standard_EXPORT void Clear();
71
72
1155d05a 73 Handle(NCollection_BaseAllocator) myAllocator;
74 TopTools_ListOfShape myShapes;
42cf5bc1 75 TopoDS_Shape myShape;
76 Standard_Integer myNbShapes;
77 Standard_Integer mySum;
78 Standard_Integer myUpper;
79
80
81private:
82
83
84
85
86
87};
88
89
90
91
92
93
94
95#endif // _BOPTools_Set_HeaderFile