blob: 0c1e2bbd2bcf6883f8a31609f165f71e3915976e (
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
|
package TShort
uses TCollection
is
-- Instantiations de TCollection --
-- ***************************** --
------------------------------------------------------------------------
--
-- Instantiations Array1 -- *************************************************************
--
class Array1OfShortReal instantiates Array1 from TCollection (ShortReal);
--
-- Instantiations HArray1 -- **************************************************************
--
class HArray1OfShortReal instantiates
HArray1 from TCollection (ShortReal, Array1OfShortReal from TShort);
--
-- Instantiations Array2 -- ***************************************************************************
--
class Array2OfShortReal instantiates
Array2 from TCollection (ShortReal);
--
-- Instantiations HArray2
-- ****************************************************************************
--
class HArray2OfShortReal instantiates
HArray2 from TCollection ( ShortReal,
Array2OfShortReal from TShort);
--
-- Instantiations Sequence *****************************************************
--
class SequenceOfShortReal instantiates
Sequence from TCollection (ShortReal);
--
-- Instantiations HSequence ***********************************************
--
class HSequenceOfShortReal instantiates
HSequence from TCollection (ShortReal,
SequenceOfShortReal from TShort);
end TShort;
|