summaryrefslogtreecommitdiff
path: root/src/StepShape/StepShape_ToleranceValue.cxx
blob: a4931fd559eb71031db48ff522fa3e7d23d2f3a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <StepShape_ToleranceValue.ixx>

StepShape_ToleranceValue::StepShape_ToleranceValue  ()    {  }

void  StepShape_ToleranceValue::Init
  (const Handle(StepBasic_MeasureWithUnit)& lower_bound,
   const Handle(StepBasic_MeasureWithUnit)& upper_bound)
{
  theLowerBound = lower_bound;
  theUpperBound = upper_bound;
}

Handle(StepBasic_MeasureWithUnit)  StepShape_ToleranceValue::LowerBound () const
{  return theLowerBound;  }

void  StepShape_ToleranceValue::SetLowerBound (const Handle(StepBasic_MeasureWithUnit)& lower_bound)
{  theLowerBound = lower_bound;  }

Handle(StepBasic_MeasureWithUnit)  StepShape_ToleranceValue::UpperBound () const
{  return theUpperBound;  }

void  StepShape_ToleranceValue::SetUpperBound (const Handle(StepBasic_MeasureWithUnit)& upper_bound)
{  theUpperBound = upper_bound;  }