summaryrefslogtreecommitdiff
path: root/src/StepData/StepData_SelectArrReal.cxx
blob: 476fd75cb3fe28d6af86afca41c998a3b544c14a (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
#include <StepData_SelectArrReal.ixx>

//  Definitions : cf Field
#define myKindArrReal 8


//=======================================================================
//function : StepData_SelectSeqReal
//purpose  : 
//=======================================================================

StepData_SelectArrReal::StepData_SelectArrReal ()
{
}




//=======================================================================
//function : Kind
//purpose  : 
//=======================================================================

Standard_Integer StepData_SelectArrReal::Kind () const
{
  return myKindArrReal;  
}


//=======================================================================
//function : ArrReal
//purpose  : 
//=======================================================================

Handle(TColStd_HArray1OfReal) StepData_SelectArrReal::ArrReal () const
{
 return theArr;  
}


//=======================================================================
//function : SetArrReal
//purpose  : 
//=======================================================================

void StepData_SelectArrReal::SetArrReal (const Handle(TColStd_HArray1OfReal)& arr)
{
  theArr = arr;  
}