blob: 8a66937daba5b7927f29a449e7930c582832e630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- File: SelectBase.cdl
-- Created: Tue Nov 17 18:47:13 1992
-- Author: Christian CAILLET
-- <cky@topsn2>
---Copyright: Matra Datavision 1992
deferred class SelectBase from IFSelect inherits Selection
---Purpose : SelectBase works directly from an InterfaceModel : it is the
-- first base for other Selections.
uses SelectionIterator
is
FillIterator (me; iter : in out SelectionIterator);
---Purpose : Puts in an Iterator the Selections from which "me" depends
-- This list is empty for all SelectBase type Selections
end SelectBase;
|