blob: c2d9428af25cacff68bed86c74ef9760e41693b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// File: TCollection_ListIterator.lxx
// Created: Thu Dec 17 18:15:01 1992
// Author: Remi LEQUETTE
// <rle@phobox>
//=======================================================================
//function : More
//purpose :
//=======================================================================
inline Standard_Boolean TCollection_ListIterator::More() const
{
return current != 0L;
}
|