blob: 9a281c125733e8e6b8a15021ac2c363cbcecc597 (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
-- File: BOPTools_CommonBlockAPI.cdl
-- Created: Wed Mar 14 14:56:48 2001
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2001
class CommonBlockAPI from BOPTools
---Purpose:
--- class that provide some useful tools
--- to manage with a List Of Common Block-s
uses
ListOfCommonBlock from BOPTools,
ListOfPaveBlock from BOPTools,
PaveBlock from BOPTools
is
Create (aList:ListOfCommonBlock from BOPTools)
returns CommonBlockAPI from BOPTools;
---Purpose:
--- Constructor
---
List(me)
returns ListOfCommonBlock from BOPTools;
---C++: return const &
---Purpose:
--- Selector
---
CommonPaveBlocks(me;
anE:Integer from Standard)
returns ListOfPaveBlock from BOPTools;
---C++: return const &
---Purpose:
--- Returns all PaveBlock-s (from the list) that are
--- common for the given edge with DS-index <anE>
---
IsCommonBlock (me;
aPB: PaveBlock from BOPTools)
returns Boolean from Standard;
---Purpose:
--- Returns TRUE if given PaveBlock <aPB> is
--- common for the Blocks from the list
---
fields
myListOfCommonBlock :Address from Standard;
myListOfPaveBlock :ListOfPaveBlock from BOPTools;
end CommonBlockAPI;
|