Salome HOME
This commit was generated by cvs2git to create tag 'TRIPOLI_323'.
[modules/geom.git] / src / NMTDS / NMTDS_Iterator.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File:        NMTDS_Iterator.hxx
24 // Author:      Peter KURNEV
25
26 #ifndef _NMTDS_Iterator_HeaderFile
27 #define _NMTDS_Iterator_HeaderFile
28
29 #include <Standard.hxx>
30 #include <Standard_Macro.hxx>
31
32 #include <Standard_Integer.hxx>
33 #include <TColStd_DataMapOfIntegerListOfInteger.hxx>
34 #include <TopAbs_ShapeEnum.hxx>
35 #include <Standard_Boolean.hxx>
36 #include <NMTDS_PShapesDataStructure.hxx>
37 #include <NMTDS_ListOfPairBoolean.hxx>
38 #include <NMTDS_ListIteratorOfListOfPairBoolean.hxx>
39 #include <NMTDS_ShapesDataStructure.hxx>
40
41 //=======================================================================
42 //class : NMTDS_Iterator
43 //purpose  : 
44 //=======================================================================
45 class NMTDS_Iterator  {
46  public:
47   Standard_EXPORT   
48     NMTDS_Iterator();
49
50   Standard_EXPORT 
51     virtual ~NMTDS_Iterator();
52   
53   Standard_EXPORT
54     void SetDS(const NMTDS_PShapesDataStructure& pDS) ;
55   
56   Standard_EXPORT 
57     const NMTDS_ShapesDataStructure& DS() const;
58   
59   Standard_EXPORT 
60     void Initialize(const TopAbs_ShapeEnum aType1,
61                     const TopAbs_ShapeEnum aType2) ;
62   
63   Standard_EXPORT 
64     Standard_Boolean More() const;
65   
66   Standard_EXPORT
67     void Next() ;
68   
69   Standard_EXPORT
70     void Current(Standard_Integer& aIndex1,
71                  Standard_Integer& aIndex2,
72                  Standard_Boolean& aWithSubShape) const;
73   
74   Standard_EXPORT
75     virtual  void Prepare() ;
76   
77   Standard_EXPORT
78     Standard_Integer ExpectedLength() const;
79   
80   Standard_EXPORT 
81     Standard_Integer BlockLength() const;
82   
83   Standard_EXPORT 
84     const TColStd_DataMapOfIntegerListOfInteger& SDVertices() const;
85   
86   Standard_EXPORT 
87     static  void FillMVSD(const TColStd_DataMapOfIntegerListOfInteger& aMVSD1,
88                           TColStd_DataMapOfIntegerListOfInteger& aMVSD2) ;
89
90 protected:
91   Standard_EXPORT  
92     virtual  void Intersect() ;
93   //
94   
95   NMTDS_PShapesDataStructure myDS;
96   NMTDS_ListOfPairBoolean myLists[6];
97   NMTDS_ListIteratorOfListOfPairBoolean myIterator;
98   NMTDS_ListOfPairBoolean myEmptyList;
99   Standard_Integer myLength;
100   TColStd_DataMapOfIntegerListOfInteger myMVSD;
101 };
102
103 #endif