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