0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[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 IMPLEMENT_STANDARD_RTTIEXT(StepDimTol_CommonDatum,StepRepr_CompositeShapeAspect)
25
26 //=======================================================================
27 //function : StepDimTol_CommonDatum
28 //purpose  : 
29 //=======================================================================
30 StepDimTol_CommonDatum::StepDimTol_CommonDatum ()
31 {
32 }
33
34 //=======================================================================
35 //function : Init
36 //purpose  : 
37 //=======================================================================
38
39 void 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)
48 {
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);
58 }
59
60 //=======================================================================
61 //function : Datum
62 //purpose  : 
63 //=======================================================================
64
65 Handle(StepDimTol_Datum) StepDimTol_CommonDatum::Datum () const
66 {
67   return myDatum;
68 }
69
70 //=======================================================================
71 //function : SetDatum
72 //purpose  : 
73 //=======================================================================
74
75 void StepDimTol_CommonDatum::SetDatum (const Handle(StepDimTol_Datum) &theDatum)
76 {
77   myDatum = theDatum;
78 }