blob: f02fff611f6793eba333e9259cd8df8b93614209 (
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
|
// File: TCollection_ListIterator.gxx
// Created: Thu Dec 17 18:19:38 1992
// Author: Remi LEQUETTE
// <rle@phobox>
//
// The methods of Iterator needing the Node class
// are defined in TCollection_List.gxx
//
//=======================================================================
//function : TCollection_ListIterator
//purpose :
//=======================================================================
TCollection_ListIterator::TCollection_ListIterator() :
current(NULL),
previous(NULL)
{}
//=======================================================================
//function : TCollection_ListIterator
//purpose :
//=======================================================================
TCollection_ListIterator::TCollection_ListIterator(const TCollection_List& L) :
current(L.myFirst),
previous(NULL)
{}
//=======================================================================
//function : Initialize
//purpose :
//=======================================================================
void TCollection_ListIterator::Initialize(const TCollection_List& L)
{
current = L.myFirst;
previous = NULL;
}
|