blob: dba053d608ae22d7f53f2d1b00e9b549e96ec618 (
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
|
// File: PDataStd_IntegerList.cxx
// Created: May 29 11:40:00 2007
// Author: Vlad Romashko
// <vladislav.romashko@opencascade.com>
// Copyright: Open CASCADE
#include <PDataStd_IntegerList.ixx>
//=======================================================================
//function : PDataStd_IntegerList
//purpose :
//=======================================================================
PDataStd_IntegerList::PDataStd_IntegerList()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void PDataStd_IntegerList::Init(const Standard_Integer lower,
const Standard_Integer upper)
{
if (upper >= lower)
myValue = new PColStd_HArray1OfInteger(lower, upper);
}
//=======================================================================
//function : SetValue
//purpose :
//=======================================================================
void PDataStd_IntegerList::SetValue(const Standard_Integer index, const Standard_Integer value)
{
myValue->SetValue(index, value);
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
Standard_Integer PDataStd_IntegerList::Value( const Standard_Integer index ) const
{
return myValue->Value(index);
}
//=======================================================================
//function : Lower
//purpose :
//=======================================================================
Standard_Integer PDataStd_IntegerList::Lower (void) const
{
if (!myValue.IsNull())
return myValue->Lower();
return 0;
}
//=======================================================================
//function : Upper
//purpose :
//=======================================================================
Standard_Integer PDataStd_IntegerList::Upper (void) const
{
if (!myValue.IsNull())
return myValue->Upper();
return -1;
}
|