Salome HOME
test integration for 0019050: EDF 521 GEOM SMESH : Improve selection process in the...
[modules/geom.git] / src / NMTDS / NMTDS_BoxBndTree.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // File:        NMTDS_BoxBndTree.hxx
19 // Created:     Tue Oct 17 12:50:31 2006
20 // Author:      Peter KURNEV
21 //              <pkv@irinox>
22
23
24 #ifndef NMTDS_BoxBndTree_HeaderFile
25 #define NMTDS_BoxBndTree_HeaderFile
26
27 #include <NCollection_UBTree.hxx>
28 #include <Bnd_Box.hxx>
29 #include <TColStd_MapOfInteger.hxx>
30 #include <TColStd_ListOfInteger.hxx>
31
32 typedef NCollection_UBTree <Standard_Integer , Bnd_Box> NMTDS_BoxBndTree;
33
34   class NMTDS_BoxBndTreeSelector : public NMTDS_BoxBndTree::Selector {
35     public:
36       Standard_EXPORT NMTDS_BoxBndTreeSelector();
37       Standard_EXPORT virtual Standard_Boolean Reject(const Bnd_Box&) const;
38       Standard_EXPORT virtual Standard_Boolean Accept(const Standard_Integer &);
39       Standard_EXPORT virtual ~NMTDS_BoxBndTreeSelector();
40       
41       Standard_EXPORT void Clear();
42       Standard_EXPORT void SetBox(const Bnd_Box&);
43       Standard_EXPORT const TColStd_ListOfInteger& Indices() const;
44
45     protected:
46       Bnd_Box  myBox;
47       TColStd_MapOfInteger  myFence;
48       TColStd_ListOfInteger myIndices;
49       
50   };
51
52 #endif