0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / StepDimTol / StepDimTol_CommonDatum.hxx
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 #ifndef _StepDimTol_CommonDatum_HeaderFile
17 #define _StepDimTol_CommonDatum_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <StepRepr_CompositeShapeAspect.hxx>
23 #include <StepData_Logical.hxx>
24 class StepDimTol_Datum;
25 class TCollection_HAsciiString;
26 class StepRepr_ProductDefinitionShape;
27
28
29 class StepDimTol_CommonDatum;
30 DEFINE_STANDARD_HANDLE(StepDimTol_CommonDatum, StepRepr_CompositeShapeAspect)
31
32 //! Representation of STEP entity CommonDatum
33 class StepDimTol_CommonDatum : public StepRepr_CompositeShapeAspect
34 {
35
36 public:
37
38   
39   //! Empty constructor
40   Standard_EXPORT StepDimTol_CommonDatum();
41   
42   //! Initialize all fields (own and inherited)
43   Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theShapeAspect_Name,
44                             const Handle(TCollection_HAsciiString)& theShapeAspect_Description,
45                             const Handle(StepRepr_ProductDefinitionShape)& theShapeAspect_OfShape,
46                             const StepData_Logical                  theShapeAspect_ProductDefinitional,
47                             const Handle(TCollection_HAsciiString)& theDatum_Name,
48                             const Handle(TCollection_HAsciiString)& theDatum_Description,
49                             const Handle(StepRepr_ProductDefinitionShape)& theDatum_OfShape,
50                             const StepData_Logical                  theDatum_ProductDefinitional,
51                             const Handle(TCollection_HAsciiString)& theDatum_Identification);
52   
53   //! Returns data for supertype Datum
54   Standard_EXPORT Handle(StepDimTol_Datum) Datum() const;
55   
56   //! Set data for supertype Datum
57   Standard_EXPORT void SetDatum (const Handle(StepDimTol_Datum)& theDatum);
58
59
60
61
62   DEFINE_STANDARD_RTTIEXT(StepDimTol_CommonDatum,StepRepr_CompositeShapeAspect)
63
64 protected:
65
66
67
68
69 private:
70
71
72   Handle(StepDimTol_Datum) myDatum;
73
74
75 };
76
77
78
79
80
81
82
83 #endif // _StepDimTol_CommonDatum_HeaderFile