0026947: Data exchange can not be compiled without visualization anyomre
[occt.git] / src / StepDimTol / StepDimTol_CommonDatum.cxx
CommitLineData
b311480e 1// Created on: 2003-06-04
2// Created by: Galina KULIKOVA
973c2be1 3// Copyright (c) 2003-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
42cf5bc1 18#include <Standard_Type.hxx>
19#include <StepDimTol_CommonDatum.hxx>
20#include <StepDimTol_Datum.hxx>
21#include <StepRepr_ProductDefinitionShape.hxx>
22#include <TCollection_HAsciiString.hxx>
7fd59977 23
92efcf78 24IMPLEMENT_STANDARD_RTTIEXT(StepDimTol_CommonDatum,StepRepr_CompositeShapeAspect)
25
7fd59977 26//=======================================================================
27//function : StepDimTol_CommonDatum
28//purpose :
29//=======================================================================
7fd59977 30StepDimTol_CommonDatum::StepDimTol_CommonDatum ()
31{
32}
33
34//=======================================================================
35//function : Init
36//purpose :
37//=======================================================================
38
2f220b97 39void StepDimTol_CommonDatum::Init (const Handle(TCollection_HAsciiString) &theShapeAspect_Name,
40 const Handle(TCollection_HAsciiString) &theShapeAspect_Description,
41 const Handle(StepRepr_ProductDefinitionShape) &theShapeAspect_OfShape,
42 const StepData_Logical theShapeAspect_ProductDefinitional,
43 const Handle(TCollection_HAsciiString) &theDatum_Name,
44 const Handle(TCollection_HAsciiString) &theDatum_Description,
45 const Handle(StepRepr_ProductDefinitionShape) &theDatum_OfShape,
46 const StepData_Logical theDatum_ProductDefinitional,
47 const Handle(TCollection_HAsciiString) &theDatum_Identification)
7fd59977 48{
2f220b97 49 StepRepr_CompositeShapeAspect::Init(theShapeAspect_Name,
50 theShapeAspect_Description,
51 theShapeAspect_OfShape,
52 theShapeAspect_ProductDefinitional);
53 myDatum->Init(theDatum_Name,
54 theDatum_Description,
55 theDatum_OfShape,
56 theDatum_ProductDefinitional,
57 theDatum_Identification);
7fd59977 58}
59
60//=======================================================================
61//function : Datum
62//purpose :
63//=======================================================================
64
65Handle(StepDimTol_Datum) StepDimTol_CommonDatum::Datum () const
66{
2f220b97 67 return myDatum;
7fd59977 68}
69
70//=======================================================================
71//function : SetDatum
72//purpose :
73//=======================================================================
74
2f220b97 75void StepDimTol_CommonDatum::SetDatum (const Handle(StepDimTol_Datum) &theDatum)
7fd59977 76{
2f220b97 77 myDatum = theDatum;
7fd59977 78}