blob: 987e9718c881475edd937bb33629a53a621b0e8d (
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
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
92
93
94
95
96
97
98
99
100
101
|
-- File: PDataStd.cdl
-- Created: Wed May 10 10:48:16 1995
-- Author: Denis PASCAL
---Copyright: Matra Datavision 1995
package PDataStd
---Purpose:
uses Standard,
PDF,
PCollection,
PColStd,
TColStd
is
---Purpose: General Data
-- ============
class Name;
class Comment;
---Purpose: Basic Data for Modeling
-- =======================
class Integer;
class IntegerArray;
class IntegerArray_1;
class Real;
class RealArray;
class RealArray_1;
class ExtStringArray;
class ExtStringArray_1;
class TreeNode;
class Expression;
class Relation;
class Variable;
---Purpose: Document Data for Modeling
-- ==========================
class NoteBook;
class UAttribute;
class Directory;
-- Extension
class Tick;
-- Lists:
class IntegerList;
class RealList;
class ExtStringList;
class BooleanList;
class ReferenceList;
-- Arrays:
class BooleanArray;
class ReferenceArray;
class ByteArray;
class ByteArray_1;
class NamedData;
class AsciiString;
class IntPackedMap;
class IntPackedMap_1;
class HArray1OfHAsciiString instantiates
HArray1 from PCollection (HAsciiString from PCollection);
class HArray1OfHArray1OfInteger instantiates HArray1 from PCollection(
HArray1OfInteger from PColStd);
class HArray1OfHArray1OfReal instantiates HArray1 from PCollection(
HArray1OfReal from PColStd);
class HArray1OfByte instantiates HArray1 from PCollection(
Byte from Standard);
end PDataStd;
|