blob: 9380a4c6d21b493540d48e4abdf02ec48cf380ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// --------------------------------------------------------------------
// Length
// --------------------------------------------------------------------
inline Standard_Integer DBC_BaseArray::Length () const
{
return mySize;
}
// --------------------------------------------------------------------
// Upper
// --------------------------------------------------------------------
inline Standard_Integer DBC_BaseArray::Upper () const
{
return (mySize - 1);
}
|