summaryrefslogtreecommitdiff
path: root/src/StepDimTol/StepDimTol_Datum.cxx
blob: 91a0bf17c69ee5fdc38bfd73713a15b8b7d17579 (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
50
51
52
53
54
// File:	StepDimTol_Datum.cxx
// Created:	Wed Jun  4 11:17:04 2003 
// Author:	Galina KULIKOVA
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
// Copyright:	Open CASCADE 2002

#include <StepDimTol_Datum.ixx>

//=======================================================================
//function : StepDimTol_Datum
//purpose  : 
//=======================================================================

StepDimTol_Datum::StepDimTol_Datum ()
{
}

//=======================================================================
//function : Init
//purpose  : 
//=======================================================================

void StepDimTol_Datum::Init (const Handle(TCollection_HAsciiString)& aShapeAspect_Name,
                             const Handle(TCollection_HAsciiString)& aShapeAspect_Description,
                             const Handle(StepRepr_ProductDefinitionShape)& aShapeAspect_OfShape,
                             const StepData_Logical aShapeAspect_ProductDefinitional,
                             const Handle(TCollection_HAsciiString)& aIdentification)
{
  StepRepr_ShapeAspect::Init(aShapeAspect_Name,
                             aShapeAspect_Description,
                             aShapeAspect_OfShape,
                             aShapeAspect_ProductDefinitional);
  theIdentification = aIdentification;
}

//=======================================================================
//function : Identification
//purpose  : 
//=======================================================================

Handle(TCollection_HAsciiString) StepDimTol_Datum::Identification () const
{
  return theIdentification;
}

//=======================================================================
//function : SetIdentification
//purpose  : 
//=======================================================================

void StepDimTol_Datum::SetIdentification (const Handle(TCollection_HAsciiString) &aIdentification)
{
  theIdentification = aIdentification;
}