blob: 3c1a3d7275c31cd47dac32b880111e34af218cd5 (
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
|
// File: PDataStd_IntPackedMap.cxx
// Created: Wed Aug 22 17:28:25 2007
// Author: Sergey ZARITCHNY
// <sergey.zaritchny@opencascade.com>
// Copyright: Open CASCADE SA 2007
#include <PDataStd_IntPackedMap.ixx>
#include <PColStd_HArray1OfInteger.hxx>
//=======================================================================
//function : PDataStd_IntPackedMap
//purpose : Constructor
//=======================================================================
PDataStd_IntPackedMap::PDataStd_IntPackedMap() {}
//=======================================================================
//function : Init
//purpose : Initializes the internal container
//=======================================================================
void PDataStd_IntPackedMap::Init(const Standard_Integer theLow,
const Standard_Integer theUp) {
myIntValues = new PColStd_HArray1OfInteger(theLow, theUp);
}
//=======================================================================
//function : GetValue
//purpose :
//=======================================================================
Standard_Integer PDataStd_IntPackedMap::GetValue(
const Standard_Integer theIndex) const
{ return myIntValues->Value(theIndex); }
//=======================================================================
//function : SetValue
//purpose :
//=======================================================================
void PDataStd_IntPackedMap::SetValue(const Standard_Integer theIndx,
const Standard_Integer theValue)
{
myIntValues->SetValue(theIndx, theValue);
}
//=======================================================================
//function : IsEmpty
//purpose :
//=======================================================================
Standard_Boolean PDataStd_IntPackedMap::IsEmpty() const
{
if(myIntValues.IsNull()) return Standard_True;
if(!myIntValues->Upper() && !myIntValues->Lower()) return Standard_True;
return Standard_False;
}
//=======================================================================
//function : Returns an upper bound of the internal container
//purpose :
//=======================================================================
Standard_Integer PDataStd_IntPackedMap::Upper() const
{
if(myIntValues.IsNull()) return 0;
return myIntValues->Upper();
}
//=======================================================================
//function : Returns a lower bound of the internal container
//purpose :
//=======================================================================
Standard_Integer PDataStd_IntPackedMap::Lower() const
{
if(myIntValues.IsNull()) return 0;
return myIntValues->Lower();
}
|