blob: 0a0e8b477f3823b46a793487444db1c561a94f1d (
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
|
-- File: Intrv.cdl
-- Created: Fri Dec 13 14:13:31 1991
-- Author: Christophe MARION
-- <cma@sdsun1>
---Copyright: Matra Datavision 1991
package Intrv
---Purpose:
uses
Standard,
TCollection
is
-- other
enumeration Position is -- me **------------***
Before, -- **---*
JustBefore, -- **--------*
OverlappingAtStart, -- **--------------*
JustEnclosingAtEnd, -- **----------------------*
Enclosing, -- **------------------------------*
JustOverlappingAtStart, -- *---------*
Similar, -- *-------------*
JustEnclosingAtStart, -- *---------------------*
Inside, -- *---*
JustOverlappingAtEnd, -- *-------*
OverlappingAtEnd, -- *---------------*
JustAfter, -- *-------*
After -- *--*
end Position;
class Interval;
class Intervals;
class SequenceOfInterval instantiates Sequence from TCollection(Interval);
end Intrv;
|