0033039: Coding - get rid of unused headers [StepData to StlAPI]
[occt.git] / src / StepDimTol / StepDimTol_DatumReferenceModifierWithValue.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_DatumReferenceModifierWithValue_HeaderFile
17 #define _StepDimTol_DatumReferenceModifierWithValue_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Handle.hxx>
21
22 #include <Standard_Transient.hxx>
23 #include <Standard_Integer.hxx>
24 #include <StepBasic_LengthMeasureWithUnit.hxx>
25 #include <StepDimTol_DatumReferenceModifierType.hxx>
26
27 class StepDimTol_DatumReferenceModifierWithValue;
28 DEFINE_STANDARD_HANDLE(StepDimTol_DatumReferenceModifierWithValue, Standard_Transient)
29 //! Representation of STEP entity DatumReferenceModifierWithValue
30 class StepDimTol_DatumReferenceModifierWithValue : public Standard_Transient
31 {
32
33 public:
34   
35   //! Empty constructor
36   Standard_EXPORT StepDimTol_DatumReferenceModifierWithValue();
37   
38   //! Initialize all fields (own and inherited)
39   Standard_EXPORT   void Init (const StepDimTol_DatumReferenceModifierType& theModifierType,
40                                const Handle(StepBasic_LengthMeasureWithUnit)& theModifierValue);
41   
42   //! Returns field ModifierType
43   inline StepDimTol_DatumReferenceModifierType ModifierType () const
44   {
45     return myModifierType;
46   }
47   
48   //! Set field ModifierType
49   inline void SetModifierType (const StepDimTol_DatumReferenceModifierType &theModifierType)
50   {
51     myModifierType = theModifierType;
52   }
53   
54   //! Returns field ModifierValue
55   inline Handle(StepBasic_LengthMeasureWithUnit) ModifierValue()
56   {
57     return myModifierValue;
58   }
59   
60   //! Set field ModifierValue
61   inline void SetModifierValue(const Handle(StepBasic_LengthMeasureWithUnit)& theModifierValue)
62   {
63     myModifierValue = theModifierValue;
64   }
65   
66   DEFINE_STANDARD_RTTIEXT(StepDimTol_DatumReferenceModifierWithValue,Standard_Transient)
67
68 private: 
69   StepDimTol_DatumReferenceModifierType myModifierType;
70   Handle(StepBasic_LengthMeasureWithUnit) myModifierValue;
71 };
72 #endif // _StepDimTol_DatumReferenceModifierWithValue_HeaderFile