Files
OCCT/src/TCollection/TCollection_Stack.lxx
2012-03-05 19:23:40 +04:00

27 lines
645 B
Plaintext
Executable File

// File: TCollection_Stack.lxx
// Created: Mon Jan 18 14:28:49 1993
// Author: Remi LEQUETTE
// <rle@phylox>
//=======================================================================
//function : IsEmpty
//purpose :
//=======================================================================
inline Standard_Boolean TCollection_Stack::IsEmpty() const
{
return myDepth == 0;
}
//=======================================================================
//function : Depth
//purpose :
//=======================================================================
inline Standard_Integer TCollection_Stack::Depth() const
{
return myDepth;
}