blob: 7e3ee8009e97976f442a57d55fee2e8d9f53ba6e (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// Copyright: Matra-Datavision 1991
// File: GraphTools_SortedStrgCmptsIterator.cxx
// Created: Wed Oct 23 16:28:16 1991
// Author: Denis PASCAL
// <dp>
//=======================================================================
//function : GraphTools_SortedStrgCmptsIterator
//purpose :
//=======================================================================
GraphTools_SortedStrgCmptsIterator::GraphTools_SortedStrgCmptsIterator ()
{}
//=======================================================================
//function : GraphTools_SortedStrgCmptsIterator
//purpose :
//=======================================================================
GraphTools_SortedStrgCmptsIterator::GraphTools_SortedStrgCmptsIterator
(const Graph& G)
{
FromGraph(G);
}
//=======================================================================
//function : FromVertex
//purpose :
//=======================================================================
void GraphTools_SortedStrgCmptsIterator::FromVertex
(const Vertex& V)
{
myIterator.FromVertex(V);
}
//=======================================================================
//function : FromGraph
//purpose :
//=======================================================================
void GraphTools_SortedStrgCmptsIterator::FromGraph
(const Graph& G)
{
for ( GIterator it (G); it.More(); it.Next() ) {
myIterator.FromVertex(it.Value());
}
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void GraphTools_SortedStrgCmptsIterator::Perform
(const Graph& G)
{
myIterator.Perform(G);
}
//=======================================================================
//function : Reset
//purpose :
//=======================================================================
void GraphTools_SortedStrgCmptsIterator::Reset ()
{
myIterator.Reset();
}
//=======================================================================
//function : More
//purpose :
//=======================================================================
Standard_Boolean GraphTools_SortedStrgCmptsIterator::More() const
{
return myIterator.More();
}
//=======================================================================
//function : Next
//purpose :
//=======================================================================
void GraphTools_SortedStrgCmptsIterator::Next()
{
myIterator.Next();
}
//=======================================================================
//function : NbVertices
//purpose :
//=======================================================================
Standard_Integer GraphTools_SortedStrgCmptsIterator::NbVertices() const
{
return myIterator.NbVertices();
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
const Vertex& GraphTools_SortedStrgCmptsIterator::Value
(const Standard_Integer I) const
{
return myIterator.Value(I);
}
|