blob: 7a62414c35aacf165443f9002e2a53d5b9869f5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// File: MAT_TList.lxx
// Created: Wed Jun 24 12:47:58 1992
// Author: Gilles DEBARBOUILLE
// <gde@phobox>
//=======================================================================
//function : Number
//purpose :
//=======================================================================
inline Standard_Integer MAT_TList::Number() const
{
return thenumberofitems;
}
//=======================================================================
//function : Index
//purpose :
//=======================================================================
inline Standard_Integer MAT_TList::Index() const
{
return thecurrentindex;
}
//=======================================================================
//function : IsEmpty
//purpose :
//=======================================================================
inline Standard_Boolean MAT_TList::IsEmpty() const
{
return thenumberofitems == 0;
}
|