mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-25 09:07:26 +08:00
27 lines
649 B
Plaintext
Executable File
27 lines
649 B
Plaintext
Executable File
// File: TCollection_Queue.lxx
|
|
// Created: Mon Jan 18 14:54:20 1993
|
|
// Author: Remi LEQUETTE
|
|
// <rle@phylox>
|
|
|
|
|
|
//=======================================================================
|
|
//function : Length
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Integer TCollection_Queue::Length() const
|
|
{
|
|
return myLength;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : IsEmpty
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Boolean TCollection_Queue::IsEmpty() const
|
|
{
|
|
return myLength == 0;
|
|
}
|