0031004: Coding - eliminate warnings issued by gcc 9.1.0
[occt.git] / src / StepData / StepData_SelectArrReal.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
42cf5bc1 14
15#include <Standard_Type.hxx>
16#include <StepData_SelectArrReal.hxx>
7fd59977 17
92efcf78 18IMPLEMENT_STANDARD_RTTIEXT(StepData_SelectArrReal,StepData_SelectNamed)
19
7fd59977 20// Definitions : cf Field
21#define myKindArrReal 8
22
23
24//=======================================================================
25//function : StepData_SelectSeqReal
26//purpose :
27//=======================================================================
28
29StepData_SelectArrReal::StepData_SelectArrReal ()
30{
31}
32
33
34
35
36//=======================================================================
37//function : Kind
38//purpose :
39//=======================================================================
40
41Standard_Integer StepData_SelectArrReal::Kind () const
42{
43 return myKindArrReal;
44}
45
46
47//=======================================================================
48//function : ArrReal
49//purpose :
50//=======================================================================
51
52Handle(TColStd_HArray1OfReal) StepData_SelectArrReal::ArrReal () const
53{
54 return theArr;
55}
56
57
58//=======================================================================
59//function : SetArrReal
60//purpose :
61//=======================================================================
62
63void StepData_SelectArrReal::SetArrReal (const Handle(TColStd_HArray1OfReal)& arr)
64{
65 theArr = arr;
66}