blob: 20cf880833d6c4062ea9069825fac05e77133274 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// File: TCollection_HArray1.lxx
// Created: Thu Mar 11 18:34:58 1993
// Author: Remi LEQUETTE
// <rle@phobox>
//=======================================================================
//function : Length
//purpose :
//=======================================================================
inline Standard_Integer TCollection_HArray1::Length () const
{
return myArray.Length();
}
//=======================================================================
//function : Lower
//purpose :
//=======================================================================
inline Standard_Integer TCollection_HArray1::Lower () const
{
return myArray.Lower();
}
//=======================================================================
//function : Upper
//purpose :
//=======================================================================
inline Standard_Integer TCollection_HArray1::Upper () const
{
return myArray.Upper();
}
//=======================================================================
//function : SetValue
//purpose :
//=======================================================================
inline void TCollection_HArray1::SetValue (const Standard_Integer Index,
const ItemHArray1& Value)
{
myArray.SetValue(Index,Value);
}
//=======================================================================
//function : Array1
//purpose :
//=======================================================================
inline const TheArray1& TCollection_HArray1::Array1() const
{
return myArray;
}
//=======================================================================
//function : ChangeArray1
//purpose :
//=======================================================================
inline TheArray1& TCollection_HArray1::ChangeArray1()
{
return myArray;
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
inline const ItemHArray1& TCollection_HArray1::Value(const Standard_Integer Index) const
{
return myArray(Index);
}
//=======================================================================
//function : ChangeValue
//purpose :
//=======================================================================
inline ItemHArray1& TCollection_HArray1::ChangeValue(const Standard_Integer Index)
{
return myArray(Index);
}
|