Salome HOME
5f4d3f034873ec8c2a9872b31202c3681eabba58
[modules/geom.git] / src / NMTDS / NMTDS_Iterator.hxx
1 // Copyright (C) 2007-2011  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 #ifndef _NMTDS_Iterator_HeaderFile
24 #define _NMTDS_Iterator_HeaderFile
25
26 #ifndef _NMTDS_PShapesDataStructure_HeaderFile
27 #include <NMTDS_PShapesDataStructure.hxx>
28 #endif
29 #ifndef _NMTDS_ListOfPassKeyBoolean_HeaderFile
30 #include <NMTDS_ListOfPassKeyBoolean.hxx>
31 #endif
32 #ifndef _NMTDS_ListIteratorOfListOfPassKeyBoolean_HeaderFile
33 #include <NMTDS_ListIteratorOfListOfPassKeyBoolean.hxx>
34 #endif
35 #ifndef _Standard_Integer_HeaderFile
36 #include <Standard_Integer.hxx>
37 #endif
38 #ifndef _TColStd_DataMapOfIntegerListOfInteger_HeaderFile
39 #include <TColStd_DataMapOfIntegerListOfInteger.hxx>
40 #endif
41 #ifndef _TopAbs_ShapeEnum_HeaderFile
42 #include <TopAbs_ShapeEnum.hxx>
43 #endif
44 #ifndef _Standard_Boolean_HeaderFile
45 #include <Standard_Boolean.hxx>
46 #endif
47 class NMTDS_ShapesDataStructure;
48 class TColStd_DataMapOfIntegerListOfInteger;
49
50
51 #ifndef _Standard_HeaderFile
52 #include <Standard.hxx>
53 #endif
54 #ifndef _Standard_Macro_HeaderFile
55 #include <Standard_Macro.hxx>
56 #endif
57
58
59 class NMTDS_Iterator  {
60
61 public:
62
63     void* operator new(size_t,void* anAddress) 
64       {
65         return anAddress;
66       }
67     void* operator new(size_t size) 
68       { 
69         return Standard::Allocate(size); 
70       }
71     void  operator delete(void *anAddress) 
72       { 
73         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
74       }
75  // Methods PUBLIC
76  // 
77
78
79 Standard_EXPORT NMTDS_Iterator();
80 Standard_EXPORT virtual ~NMTDS_Iterator();
81
82
83 Standard_EXPORT   void SetDS(const NMTDS_PShapesDataStructure& pDS) ;
84
85
86 Standard_EXPORT  const NMTDS_ShapesDataStructure& DS() const;
87
88
89 Standard_EXPORT   void Initialize(const TopAbs_ShapeEnum aType1,const TopAbs_ShapeEnum aType2) ;
90
91
92 Standard_EXPORT   Standard_Boolean More() const;
93
94
95 Standard_EXPORT   void Next() ;
96
97
98 Standard_EXPORT   void Current(Standard_Integer& aIndex1,Standard_Integer& aIndex2,Standard_Boolean& aWithSubShape) const;
99
100
101 Standard_EXPORT virtual  void Prepare() ;
102
103
104 Standard_EXPORT   Standard_Integer ExpectedLength() const;
105
106
107 Standard_EXPORT   Standard_Integer BlockLength() const;
108
109
110 Standard_EXPORT  const TColStd_DataMapOfIntegerListOfInteger& SDVertices() const;
111
112
113 Standard_EXPORT static  void FillMVSD(const TColStd_DataMapOfIntegerListOfInteger& aMVSD1,TColStd_DataMapOfIntegerListOfInteger& aMVSD2) ;
114
115
116
117
118
119 protected:
120
121  // Methods PROTECTED
122  // 
123
124
125 Standard_EXPORT virtual  void Intersect() ;
126
127
128  // Fields PROTECTED
129  //
130 NMTDS_PShapesDataStructure myDS;
131 NMTDS_ListOfPassKeyBoolean myLists[6];
132 NMTDS_ListIteratorOfListOfPassKeyBoolean myIterator;
133 NMTDS_ListOfPassKeyBoolean myEmptyList;
134 Standard_Integer myLength;
135 TColStd_DataMapOfIntegerListOfInteger myMVSD;
136
137
138 private: 
139
140  // Methods PRIVATE
141  // 
142
143
144  // Fields PRIVATE
145  //
146
147
148 };
149
150
151
152
153
154 // other Inline functions and methods (like "C++: function call" methods)
155 //
156
157
158 #endif