0026859: Export of GDT from XCAF to STEP
[occt.git] / src / StepDimTol / StepDimTol_GeoTolAndGeoTolWthMod.hxx
CommitLineData
28a73c1f 1// Created on: 2015-08-10
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_GeoTolAndGeoTolWthMod_HeaderFile
17#define _StepDimTol_GeoTolAndGeoTolWthMod_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <StepDimTol_GeometricTolerance.hxx>
23#include <StepDimTol_GeometricToleranceType.hxx>
24class StepDimTol_GeometricToleranceTarget;
25class StepDimTol_GeometricToleranceWithModifiers;
26class TCollection_HAsciiString;
27class StepBasic_MeasureWithUnit;
28class StepRepr_ShapeAspect;
29
30
31class StepDimTol_GeoTolAndGeoTolWthMod;
32DEFINE_STANDARD_HANDLE(StepDimTol_GeoTolAndGeoTolWthMod, StepDimTol_GeometricTolerance)
33
34class StepDimTol_GeoTolAndGeoTolWthMod : public StepDimTol_GeometricTolerance
35{
36
37public:
38
39
40 Standard_EXPORT StepDimTol_GeoTolAndGeoTolWthMod();
41
42 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
43 const Handle(TCollection_HAsciiString)& theDescription,
44 const Handle(StepBasic_MeasureWithUnit)& theMagnitude,
45 const Handle(StepRepr_ShapeAspect)& theTolerancedShapeAspect,
46 const Handle(StepDimTol_GeometricToleranceWithModifiers)& theGTWM,
47 const StepDimTol_GeometricToleranceType theType);
48
49 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& aName,
50 const Handle(TCollection_HAsciiString)& aDescription,
51 const Handle(StepBasic_MeasureWithUnit)& aMagnitude,
52 const StepDimTol_GeometricToleranceTarget& aTolerancedShapeAspect,
53 const Handle(StepDimTol_GeometricToleranceWithModifiers)& aGTWM,
54 const StepDimTol_GeometricToleranceType theType);
55
56 inline void SetGeometricToleranceWithModifiers (const Handle(StepDimTol_GeometricToleranceWithModifiers)& theGTWM) {
57 myGeometricToleranceWithModifiers = theGTWM;
58 }
59
60 inline Handle(StepDimTol_GeometricToleranceWithModifiers) GetGeometricToleranceWithModifiers() const {
61 return myGeometricToleranceWithModifiers;
62 }
63
64 inline void SetGeometricToleranceType (const StepDimTol_GeometricToleranceType theType){
65 myToleranceType = theType;
66 }
67
68 Standard_EXPORT StepDimTol_GeometricToleranceType GetToleranceType() const {
69 return myToleranceType;
70 }
71
72 DEFINE_STANDARD_RTTI(StepDimTol_GeoTolAndGeoTolWthMod,StepDimTol_GeometricTolerance)
73
74private:
75
76 Handle(StepDimTol_GeometricToleranceWithModifiers) myGeometricToleranceWithModifiers;
77 StepDimTol_GeometricToleranceType myToleranceType;
78};
79#endif // _StepDimTol_GeoTolAndGeoTolWthMod_HeaderFile