blob: 372a9364e15a3b76862cfc5a9bd8c0464e1bb1f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <StepData_FieldListN.ixx>
#include <Standard_OutOfRange.hxx>
StepData_FieldListN::StepData_FieldListN (const Standard_Integer nb)
: thefields ( (nb == 0 ? 0 : 1),nb) { }
Standard_Integer StepData_FieldListN::NbFields () const
{ return thefields.Upper(); }
const StepData_Field& StepData_FieldListN::Field (const Standard_Integer num) const
{
return thefields.Value(num);
}
StepData_Field& StepData_FieldListN::CField (const Standard_Integer num)
{
return thefields.ChangeValue(num);
}
void StepData_FieldListN::Destroy() {}
|