blob: cdc27202f58330b1fff8dca7c092ab7a75317570 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
-- File: IntPatch_PrmPrmIntersection_T3Bits.cdl
-- Created: Thu Jan 28 14:46:57 1993
-- Author: Laurent BUCHARD
---Copyright: Matra Datavision 1993
class PrmPrmIntersection_T3Bits from IntPatch
uses Integer from Standard
is
Create (size : Integer from Standard);
Destroy(me : in out);
---C++: alias ~
Add (me : in out; t : Integer from Standard);
---C++: inline
Val (me ; t : Integer from Standard) returns Integer from Standard;
---C++: inline
Raz (me : in out; t : Integer from Standard);
---C++: inline
ResetAnd (me : in out);
And (me : in out;
Oth : in out PrmPrmIntersection_T3Bits from IntPatch;
indiceprecedent : in out Integer from Standard)
returns Integer from Standard;
fields
-- ind : Integer from Standard;
p : Address from Standard;
Isize : Integer from Standard;
end PrmPrmIntersection_T3Bits;
|