blob: 6b269c74ece1c110d60737ed995f80608fc9879f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
inline TCollection_AVLList::TCollection_AVLList()
: myNext(0L)
{
}
inline Item & TCollection_AVLList::Value() const
{
return (Item&)myValue;
}
inline Standard_Address & TCollection_AVLList::Next() const
{
return (Standard_Address&)myNext;
}
|