0026859: Export of GDT from XCAF to STEP
[occt.git] / src / StepDimTol / StepDimTol_CommonDatum.cxx
1 // Created on: 2003-06-04
2 // Created by: Galina KULIKOVA
3 // Copyright (c) 2003-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
17
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>
23
24 //=======================================================================
25 //function : StepDimTol_CommonDatum
26 //purpose  : 
27 //=======================================================================
28 StepDimTol_CommonDatum::StepDimTol_CommonDatum ()
29 {
30 }
31
32 //=======================================================================
33 //function : Init
34 //purpose  : 
35 //=======================================================================
36
37 void StepDimTol_CommonDatum::Init (const Handle(TCollection_HAsciiString) &theShapeAspect_Name,
38                                    const Handle(TCollection_HAsciiString) &theShapeAspect_Description,
39                                    const Handle(StepRepr_ProductDefinitionShape) &theShapeAspect_OfShape,
40                                    const StepData_Logical theShapeAspect_ProductDefinitional,
41                                    const Handle(TCollection_HAsciiString) &theDatum_Name,
42                                    const Handle(TCollection_HAsciiString) &theDatum_Description,
43                                    const Handle(StepRepr_ProductDefinitionShape) &theDatum_OfShape,
44                                    const StepData_Logical theDatum_ProductDefinitional,
45                                    const Handle(TCollection_HAsciiString) &theDatum_Identification)
46 {
47     StepRepr_CompositeShapeAspect::Init(theShapeAspect_Name,
48                                         theShapeAspect_Description,
49                                         theShapeAspect_OfShape,
50                                         theShapeAspect_ProductDefinitional);
51     myDatum->Init(theDatum_Name,
52                    theDatum_Description,
53                    theDatum_OfShape,
54                    theDatum_ProductDefinitional,
55                    theDatum_Identification);
56 }
57
58 //=======================================================================
59 //function : Datum
60 //purpose  : 
61 //=======================================================================
62
63 Handle(StepDimTol_Datum) StepDimTol_CommonDatum::Datum () const
64 {
65   return myDatum;
66 }
67
68 //=======================================================================
69 //function : SetDatum
70 //purpose  : 
71 //=======================================================================
72
73 void StepDimTol_CommonDatum::SetDatum (const Handle(StepDimTol_Datum) &theDatum)
74 {
75   myDatum = theDatum;
76 }