blob: 19dad8ba06206584aee9b4b9bd9e73529d5ac9c2 (
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
|
//
//
//
#include <TCollection_Array2Descriptor.ixx>
// ---------------------------------------------------------------------
TCollection_Array2Descriptor::TCollection_Array2Descriptor
(const Standard_Integer aLowerRow,
const Standard_Integer aUpperRow,
const Standard_Integer aLowerCol,
const Standard_Integer aUpperCol,
const Standard_Address anAddress
)
{
myLowerRow = aLowerRow;
myUpperRow = aUpperRow;
myLowerCol = aLowerCol;
myUpperCol = aUpperCol;
myAddress = anAddress;
}
// ---------------------------------------------------------------------
Standard_Integer TCollection_Array2Descriptor::UpperRow() const
{
return myUpperRow;
}
// ---------------------------------------------------------------------
Standard_Integer TCollection_Array2Descriptor::LowerRow() const
{
return myLowerRow;
}
// ---------------------------------------------------------------------
Standard_Integer TCollection_Array2Descriptor::UpperCol() const
{
return myUpperCol;
}
// ---------------------------------------------------------------------
Standard_Integer TCollection_Array2Descriptor::LowerCol() const
{
return myLowerCol;
}
// ---------------------------------------------------------------------
Standard_Address TCollection_Array2Descriptor::Address() const
{
return myAddress;
}
|