0033039: Coding - get rid of unused headers [StepData to StlAPI]
[occt.git] / src / StepDimTol / StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx
1 // Created on: 2015-07-07
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_GeometricToleranceWithDefinedAreaUnit_HeaderFile
17 #define _StepDimTol_GeometricToleranceWithDefinedAreaUnit_HeaderFile
18
19 #include <Standard.hxx>
20
21 #include <Standard_Boolean.hxx>
22 #include <StepDimTol_AreaUnitType.hxx>
23 #include <StepDimTol_GeometricToleranceWithDefinedUnit.hxx>
24
25 class StepBasic_LengthMeasureWithUnit;
26 class TCollection_HAsciiString;
27 class StepBasic_MeasureWithUnit;
28 class StepDimTol_GeometricToleranceTarget;
29
30 class StepDimTol_GeometricToleranceWithDefinedAreaUnit;
31 DEFINE_STANDARD_HANDLE(StepDimTol_GeometricToleranceWithDefinedAreaUnit, StepDimTol_GeometricToleranceWithDefinedUnit)
32 //! Representation of STEP entity GeometricToleranceWithDefinedAreaUnit
33 class StepDimTol_GeometricToleranceWithDefinedAreaUnit : public StepDimTol_GeometricToleranceWithDefinedUnit
34 {
35
36 public:
37
38   
39   //! Empty constructor
40   Standard_EXPORT StepDimTol_GeometricToleranceWithDefinedAreaUnit();
41   
42   //! Initialize all fields (own and inherited)
43   Standard_EXPORT   void Init(const Handle(TCollection_HAsciiString)& theName, 
44                               const Handle(TCollection_HAsciiString)& theDescription, 
45                               const Handle(StepBasic_MeasureWithUnit)& theMagnitude, 
46                               const StepDimTol_GeometricToleranceTarget& theTolerancedShapeAspect, 
47                               const Handle(StepBasic_LengthMeasureWithUnit)& theUnitSize, 
48                               const StepDimTol_AreaUnitType theAreaType, const Standard_Boolean theHasSecondUnitSize, 
49                               const Handle(StepBasic_LengthMeasureWithUnit)& theSecondUnitSize) ;
50   
51   //! Returns field AreaType
52   inline StepDimTol_AreaUnitType AreaType () const
53   {
54     return myAreaType;
55   }
56
57   //! Set field AreaType
58   inline void SetAreaType (const StepDimTol_AreaUnitType theAreaType)
59   {
60     myAreaType = theAreaType;
61   }
62
63   //! Returns field SecondUnitSize
64   inline Handle(StepBasic_LengthMeasureWithUnit) SecondUnitSize () const
65   {
66     return mySecondUnitSize;
67   }
68
69   //! Set field SecondUnitSize
70   inline void SetSecondUnitSize (const Handle(StepBasic_LengthMeasureWithUnit) &theSecondUnitSize)
71   {
72     mySecondUnitSize = theSecondUnitSize;
73   }
74
75   //! Indicates if SecondUnitSize field exist
76   inline Standard_Boolean HasSecondUnitSize () const
77   {
78     return mySecondUnitSize.IsNull();
79   }
80
81   DEFINE_STANDARD_RTTIEXT(StepDimTol_GeometricToleranceWithDefinedAreaUnit,StepDimTol_GeometricToleranceWithDefinedUnit)
82
83 private: 
84   StepDimTol_AreaUnitType myAreaType;
85   Handle(StepBasic_LengthMeasureWithUnit) mySecondUnitSize;
86 };
87 #endif // _StepDimTol_GeometricToleranceWithDefinedAreaUnit_HeaderFile