0024947: Redesign OCCT legacy type system -- automatic
[occt.git] / src / StepDimTol / StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cdl
1 -- Created on: 2003-08-22
2 -- Created by: Sergey KUUL
3 -- Copyright (c) 2003-2014 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 class GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol from StepDimTol
17                         inherits GeometricTolerance from StepDimTol
18                         
19 uses
20     HAsciiString from TCollection,
21     MeasureWithUnit from StepBasic,
22     ShapeAspect from StepRepr,
23     GeometricToleranceWithDatumReference from StepDimTol,
24     ModifiedGeometricTolerance from StepDimTol,
25     PositionTolerance from StepDimTol
26     
27 is
28
29     Create returns GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol;
30     
31     Init (me: mutable; aName: HAsciiString from TCollection;
32                        aDescription: HAsciiString from TCollection;
33                        aMagnitude: MeasureWithUnit from StepBasic;
34                        aTolerancedShapeAspect: ShapeAspect from StepRepr;
35                        aGTWDR : GeometricToleranceWithDatumReference;
36                        aMGT : ModifiedGeometricTolerance);
37
38
39     SetGeometricToleranceWithDatumReference(me: mutable; aGTWDR : GeometricToleranceWithDatumReference);
40     
41     GetGeometricToleranceWithDatumReference(me) returns GeometricToleranceWithDatumReference;
42     
43     SetModifiedGeometricTolerance(me: mutable; aMGT : ModifiedGeometricTolerance);
44     
45     GetModifiedGeometricTolerance(me) returns ModifiedGeometricTolerance;
46     
47     SetPositionTolerance(me: mutable; aPT : PositionTolerance);
48     
49     GetPositionTolerance(me) returns PositionTolerance;
50     
51 fields
52
53     myGeometricToleranceWithDatumReference : GeometricToleranceWithDatumReference;
54     myModifiedGeometricTolerance : ModifiedGeometricTolerance;
55     myPositionTolerance : PositionTolerance;
56     
57 end GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol;