blob: 4df549b82bdce568d6df0a61dc1840a32021eae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// File: TCollection_List.lxx
// Created: Thu Dec 17 16:30:53 1992
// Author: Remi LEQUETTE
// <rle@phobox>
//=======================================================================
//function : IsEmpty
//purpose :
//=======================================================================
inline Standard_Boolean TCollection_List::IsEmpty() const
{
return myFirst == 0L;
}
|