Integration of OCCT 6.5.0 from SVN
[occt.git] / src / PXCAFDoc / PXCAFDoc_DimTol.cdl
1 -- File:        PXCAFDoc_DimTol.cdl
2 -- Created:     Wed Dec 10 09:50:52 2008
3 -- Author:      Pavel TELKOV
4 --              <ptv@valenox>
5 ---Copyright:    Open CASCADE 2008
6
7 class DimTol from PXCAFDoc inherits  Attribute from PDF
8
9         ---Purpose: 
10 uses
11     Integer       from Standard,
12     HAsciiString  from PCollection,
13     HArray1OfReal from PColStd
14 is
15     Create returns mutable DimTol from PXCAFDoc;
16
17     Create (theKind : Integer from Standard;
18             theVal  : HArray1OfReal from PColStd;
19             theName : HAsciiString from PCollection;
20             theDescr: HAsciiString from PCollection)
21     returns mutable DimTol from PXCAFDoc;
22     
23     GetKind (me) returns Integer from Standard;
24
25     GetVal (me) returns HArray1OfReal from PColStd;
26
27     GetName (me) returns HAsciiString from PCollection;
28
29     GetDescription (me) returns HAsciiString from PCollection;
30
31     Set (me : mutable; theKind : Integer from Standard;
32                        theVal  : HArray1OfReal from PColStd;
33                        theName : HAsciiString from PCollection;
34                        theDescr: HAsciiString from PCollection);
35     
36 fields
37
38     myKind : Integer from Standard;
39     myVal  : HArray1OfReal from PColStd;
40     myName : HAsciiString from PCollection;
41     myDescr: HAsciiString from PCollection;
42
43 end DimTol from PXCAFDoc;