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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
package PColStd
uses PCollection,
TCollection,
TColStd
is
-- Instantiations de PCollection --
-- ***************************** --
------------------------------------------------------------------------
--
-- Instantiations HSequence (Integer,Real,Persistent,
-- HAsciiString,
-- HExtendedString)
-- **************************************************
--
class HSequenceOfInteger instantiates
HSequence from PCollection(Integer);
class HSequenceOfReal instantiates
HSequence from PCollection(Real);
class HSequenceOfPersistent instantiates
HSequence from PCollection(Persistent);
class HSequenceOfHAsciiString instantiates
HSequence from PCollection(HAsciiString from PCollection);
class HSequenceOfHExtendedString instantiates
HSequence from PCollection(HExtendedString from PCollection);
--
-- Instantiations HSingleList (Integer,Real,Persistent)
-- *****************************************************
--
class HSingleListOfInteger instantiates
HSingleList from PCollection(Integer);
class HSingleListOfReal instantiates
HSingleList from PCollection(Real);
class HSingleListOfPersistent instantiates
HSingleList from PCollection(Persistent);
-- Instantiations HDoubleList (Integer,Real,Persistent)
-- *********************************************
--
class HDoubleListOfInteger instantiates
HDoubleList from PCollection(Integer);
class HDoubleListOfReal instantiates
HDoubleList from PCollection(Real);
class HDoubleListOfPersistent instantiates
HDoubleList from PCollection(Persistent);
--
-- Instantiations HArray1 (Integer,Real,Persistent)
-- ****************************************************
--
class HArray1OfInteger instantiates
HArray1 from PCollection(Integer);
class HArray1OfReal instantiates
HArray1 from PCollection(Real);
class HArray1OfExtendedString instantiates
HArray1 from PCollection(HExtendedString from PCollection);
class HArray1OfPersistent instantiates
HArray1 from PCollection(Persistent);
--
-- Instantiations HArray2 (Integer,Real,Persistent)
-- ****************************************************
--
class HArray2OfInteger instantiates
HArray2 from PCollection(Integer);
class HArray2OfReal instantiates
HArray2 from PCollection(Real);
class HArray2OfPersistent instantiates
HArray2 from PCollection(Persistent);
-- Instantiations Hash (Integer)
-- *****************************
--
class HOfInteger instantiates Hash from PCollection(Integer);
class HOfReal instantiates Hash from PCollection(Real);
class HOfAsciiString instantiates Hash from PCollection(HAsciiString from PCollection);
---Purpose: Hash on the Handle.
class HashAsciiString;
---Purpose: Hash on the string.
class HOfExtendedString instantiates Hash from PCollection(HExtendedString from PCollection);
---Purpose: Hash on the Handle
class HashExtendedString;
---Purpose: Hash on the string.
end PColStd;
|