mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-18 17:06:14 +08:00
19 lines
401 B
Plaintext
Executable File
19 lines
401 B
Plaintext
Executable File
// File: TCollection_BasicMapIterator.lxx
|
|
// Created: Fri Feb 26 15:48:30 1993
|
|
// Author: Remi LEQUETTE
|
|
// <rle@phylox>
|
|
|
|
|
|
//=======================================================================
|
|
//function : More
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Boolean TCollection_BasicMapIterator::More() const
|
|
{
|
|
return myNode != 0L;
|
|
}
|
|
|
|
|
|
|