Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepData / StepData_SelectReal.cxx
CommitLineData
7fd59977 1#include <StepData_SelectReal.ixx>
2
3// Definitions : cf Field
4#define KindReal 5
5
6StepData_SelectReal::StepData_SelectReal () { theval = 0.0; }
7
8Standard_Integer StepData_SelectReal::Kind () const { return KindReal; }
9
10Standard_Real StepData_SelectReal::Real () const { return theval; }
11void StepData_SelectReal::SetReal (const Standard_Real val) { theval = val; }