blob: 91af0ac22b3a6f57a80ba5eace3d57bfab0ebac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// File: TopExp_Explorer.lxx
// Created: Mon Jan 18 18:05:05 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <TopoDS_Iterator.hxx>
//=======================================================================
//function : More
//purpose :
//=======================================================================
inline Standard_Boolean TopExp_Explorer::More()const
{
return hasMore;
}
//=======================================================================
//function : Depth
//purpose :
//=======================================================================
inline Standard_Integer TopExp_Explorer::Depth()const
{
return myTop;
}
//=======================================================================
//function : Clear
//purpose :
//=======================================================================
inline void TopExp_Explorer::Clear()
{
hasMore = Standard_False;
if(myTop >0) {
for(int i=1;i<= myTop; i++)
myStack[i].~TopoDS_Iterator();
}
myTop = 0;
}
|