0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / StepDimTol / StepDimTol_GeneralDatumReference.hxx
1 // Created on: 2015-07-16
2 // Created by: Irina KRYLOVA
3 // Copyright (c) 2015 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_GeneralDatumReference_HeaderFile
17 #define _StepDimTol_GeneralDatumReference_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <Standard_Integer.hxx>
23 #include <StepRepr_ShapeAspect.hxx>
24 #include <StepDimTol_DatumOrCommonDatum.hxx>
25 #include <StepDimTol_HArray1OfDatumReferenceModifier.hxx>
26
27 class StepDimTol_GeneralDatumReference;
28 DEFINE_STANDARD_HANDLE(StepDimTol_GeneralDatumReference, StepRepr_ShapeAspect)
29 //! Representation of STEP entity GeneralDatumReference
30 class StepDimTol_GeneralDatumReference : public StepRepr_ShapeAspect
31 {
32
33 public:
34   
35   //! Empty constructor
36   Standard_EXPORT StepDimTol_GeneralDatumReference();
37   
38   //! Initialize all fields (own and inherited)
39   Standard_EXPORT   void Init (const Handle(TCollection_HAsciiString)& theName,
40                                const Handle(TCollection_HAsciiString)& theDescription,
41                                const Handle(StepRepr_ProductDefinitionShape)& theOfShape,
42                                const StepData_Logical theProductDefinitional,
43                                const StepDimTol_DatumOrCommonDatum& theBase,
44                                const Standard_Boolean theHasModifiers,
45                                const Handle(StepDimTol_HArray1OfDatumReferenceModifier)& theModifiers);
46   
47   //! Returns field Base
48   inline StepDimTol_DatumOrCommonDatum Base()
49   {
50     return myBase;
51   }
52   
53   //! Set field Base
54   inline void SetBase(const StepDimTol_DatumOrCommonDatum& theBase)
55   {
56     myBase = theBase;
57   }
58   
59   //! Indicates is field Modifiers exist
60   inline Standard_Boolean HasModifiers() const
61   {
62     return !(myModifiers.IsNull() || myModifiers->Length() == 0);
63   }
64   
65   //! Returns field Modifiers
66   inline Handle(StepDimTol_HArray1OfDatumReferenceModifier) Modifiers()
67   {
68     return myModifiers;
69   }
70   
71   //! Set field Modifiers
72   inline void SetModifiers(const Handle(StepDimTol_HArray1OfDatumReferenceModifier)& theModifiers)
73   {
74     myModifiers = theModifiers;
75   }
76   
77   //! Returns number of Modifiers
78   inline Standard_Integer NbModifiers () const
79   {  
80     return (myModifiers.IsNull() ? 0 : myModifiers->Length());
81   }
82   
83   //! Returns Modifiers with the given number
84   inline StepDimTol_DatumReferenceModifier ModifiersValue(const Standard_Integer theNum) const
85   {  
86     return myModifiers->Value(theNum);
87   }
88   
89   //! Sets Modifiers with given number
90   inline void ModifiersValue(const Standard_Integer theNum, const StepDimTol_DatumReferenceModifier& theItem)
91   {  
92     myModifiers->SetValue (theNum, theItem);
93   }
94   
95   DEFINE_STANDARD_RTTIEXT(StepDimTol_GeneralDatumReference,StepRepr_ShapeAspect)
96
97 private: 
98   StepDimTol_DatumOrCommonDatum myBase;
99   Handle(StepDimTol_HArray1OfDatumReferenceModifier) myModifiers;
100 };
101 #endif // _StepDimTol_GeneralDatumReference_HeaderFile