Integration of OCCT 6.5.0 from SVN
[occt.git] / src / XmlObjMgt / XmlObjMgt_Array1.lxx
... / ...
CommitLineData
1// File: XmlObjMgt_Array1.lxx
2// Created: 01.08.01 17:42:23
3// Author: Alexander GRIGORIEV
4// Copyright: Open Cascade 2001
5
6//=======================================================================
7//function : Element
8//purpose :
9//=======================================================================
10
11inline const XmlObjMgt_Element& XmlObjMgt_Array1::Element () const
12{
13 return myElement;
14}
15
16//=======================================================================
17//function : Length
18//purpose :
19//=======================================================================
20
21inline Standard_Integer XmlObjMgt_Array1::Length () const
22{
23 return myLast - myFirst + 1;
24}
25
26//=======================================================================
27//function : Lower
28//purpose :
29//=======================================================================
30
31inline Standard_Integer XmlObjMgt_Array1::Lower () const
32{
33 return myFirst;
34}
35
36//=======================================================================
37//function : Upper
38//purpose :
39//=======================================================================
40
41inline Standard_Integer XmlObjMgt_Array1::Upper () const
42{
43 return myLast;
44}