0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / StepDimTol / StepDimTol_GeometricToleranceWithDatumReference.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 <StepBasic_MeasureWithUnit.hxx>
20#include <StepDimTol_GeometricToleranceWithDatumReference.hxx>
21#include <StepRepr_ShapeAspect.hxx>
22#include <TCollection_HAsciiString.hxx>
7fd59977 23
24//=======================================================================
25//function : StepDimTol_GeometricToleranceWithDatumReference
26//purpose :
27//=======================================================================
7fd59977 28StepDimTol_GeometricToleranceWithDatumReference::StepDimTol_GeometricToleranceWithDatumReference ()
29{
30}
31
32//=======================================================================
33//function : Init
34//purpose :
35//=======================================================================
36
37void StepDimTol_GeometricToleranceWithDatumReference::Init (const Handle(TCollection_HAsciiString) &aGeometricTolerance_Name,
38 const Handle(TCollection_HAsciiString) &aGeometricTolerance_Description,
39 const Handle(StepBasic_MeasureWithUnit) &aGeometricTolerance_Magnitude,
40 const Handle(StepRepr_ShapeAspect) &aGeometricTolerance_TolerancedShapeAspect,
41 const Handle(StepDimTol_HArray1OfDatumReference) &aDatumSystem)
42{
43 StepDimTol_GeometricTolerance::Init(aGeometricTolerance_Name,
44 aGeometricTolerance_Description,
45 aGeometricTolerance_Magnitude,
46 aGeometricTolerance_TolerancedShapeAspect);
47
48 theDatumSystem = aDatumSystem;
49}
50
51//=======================================================================
52//function : DatumSystem
53//purpose :
54//=======================================================================
55
56Handle(StepDimTol_HArray1OfDatumReference) StepDimTol_GeometricToleranceWithDatumReference::DatumSystem () const
57{
58 return theDatumSystem;
59}
60
61//=======================================================================
62//function : SetDatumSystem
63//purpose :
64//=======================================================================
65
66void StepDimTol_GeometricToleranceWithDatumReference::SetDatumSystem (const Handle(StepDimTol_HArray1OfDatumReference) &aDatumSystem)
67{
68 theDatumSystem = aDatumSystem;
69}