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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
-- File: Units_Token.cdl
-- Created: Mon Jun 22 17:36:23 1992
-- Author: Gilles DEBARBOUILLE
-- <gde@phobox>
---Copyright: Matra Datavision 1992
class Token from Units
inherits
TShared from MMgt
---Purpose: This class defines an elementary word contained in
-- a Sentence object.
uses
AsciiString from TCollection,
Dimensions from Units
is
Create returns mutable Token from Units;
---Level: Internal
---Purpose: Creates and returns a empty token.
Create(aword : CString)
---Level: Internal
---Purpose: Creates and returns a token. <aword> is a string
-- containing the available word.
returns mutable Token from Units;
Create(atoken : Token from Units)
---Level: Internal
---Purpose: Creates and returns a token. <atoken> is copied in
-- the returned token.
returns mutable Token from Units;
Create(aword , amean : CString)
---Level: Internal
---Purpose: Creates and returns a token. <aword> is a string
-- containing the available word and <amean> gives the
-- signification of the token.
returns mutable Token from Units;
Create(aword , amean : CString ; avalue : Real)
---Level: Internal
---Purpose: Creates and returns a token. <aword> is a string
-- containing the available word, <amean> gives the
-- signification of the token and <avalue> is the numeric
-- value of the dimension.
returns mutable Token from Units;
Create(aword , amean : CString ; avalue : Real ; adimension : Dimensions from Units)
---Level: Internal
---Purpose: Creates and returns a token. <aword> is a string
-- containing the available word, <amean> gives the
-- signification of the token, <avalue> is the numeric
-- value of the dimension, and <adimensions> is the
-- dimension of the given word <aword>.
returns mutable Token from Units;
Creates(me) returns mutable Token from Units
---Level: Internal
---Purpose: Creates and returns a token, which is a ShiftedToken.
is virtual;
Length(me) returns Integer
---Level: Internal
---Purpose: Returns the length of the word.
is static;
Word(me) returns AsciiString from TCollection
---Level: Internal
---C++: inline
---Purpose : Returns the string <theword>
is static;
Word(me : mutable ; aword : CString)
---Level: Internal
---C++: inline
---Purpose: Sets the field <theword> to <aword>.
is static;
Mean(me) returns AsciiString from TCollection
---Level: Internal
---C++: inline
---Purpose: Returns the significance of the word <theword>, which
-- is in the field <themean>.
is static;
Mean(me : mutable ; amean : CString)
---Level: Internal
---C++: inline
---Purpose: Sets the field <themean> to <amean>.
is static;
Value(me) returns Real
---Level: Internal
---C++: inline
---Purpose: Returns the value stored in the field <thevalue>.
is static;
Value(me : mutable ; avalue : Real)
---Level: Internal
---C++: inline
---Purpose: Sets the field <thevalue> to <avalue>.
is static;
Dimensions(me) returns mutable Dimensions from Units
---Level: Internal
---C++: inline
---Purpose: Returns the dimensions of the token <thedimensions>.
is static;
Dimensions(me : mutable ; adimensions : Dimensions from Units)
---Level: Internal
---Purpose: Sets the field <thedimensions> to <adimensions>.
is static;
Update(me : mutable ; amean : CString)
---Level: Internal
---Purpose: Updates the token <me> with the additional
-- signification <amean> by concatenation of the two
-- strings <themean> and <amean>. If the two
-- significations are the same , an information message
-- is written in the output device.
--
---Purpose:
is static;
Add(me ; aninteger : Integer) returns mutable Token from Units
---Level: Internal
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) operator +(const Handle(Units_Token)&,const Standard_Integer);"
---Purpose:
is static;
Add(me ; atoken : Token from Units) returns mutable Token from Units
---Level: Internal
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) operator +(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns a token which is the addition of <me> and
-- another token <atoken>. The addition is possible if
-- and only if the dimensions are the same.
is static;
Subtract(me ; atoken : Token from Units) returns mutable Token from Units
---Level: Internal
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) operator -(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns a token which is the subtraction of <me> and
-- another token <atoken>. The subtraction is possible if
-- and only if the dimensions are the same.
is static;
Multiply(me ; atoken : Token from Units) returns mutable Token from Units
---Level: Internal
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) operator *(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns a token which is the product of <me> and
-- another token <atoken>.
is static;
Multiplied(me ; avalue : Real)
---Level: Internal
---Purpose: This virtual method is called by the Measurement
-- methods, to compute the measurement during a
-- conversion.
returns Real is virtual;
Divide(me ; atoken : Token from Units) returns mutable Token from Units
---Level: Internal
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) operator /(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns a token which is the division of <me> by another
-- token <atoken>.
is static;
Divided(me ; avalue : Real)
---Level: Internal
---Purpose: This virtual method is called by the Measurement
-- methods, to compute the measurement during a
-- conversion.
returns Real is virtual;
Power(me ; atoken : Token from Units) returns mutable Token from Units
---Level: Internal
---Purpose: Returns a token which is <me> to the power of another
-- token <atoken>. The computation is possible only if
-- <atoken> is a dimensionless constant.
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) pow(const Handle(Units_Token)&,const Handle(Units_Token)&);"
is static;
Power(me ; anexponent : Real) returns mutable Token from Units
---Level: Internal
---Purpose: Returns a token which is <me> to the power of <anexponent>.
-- ---C++: alias "friend Standard_EXPORT Handle(Units_Token) pow(const Handle(Units_Token)&,const Standard_Real);"
is static;
IsEqual(me ; astring : CString) returns Boolean
---Level: Internal
-- ---C++: alias "friend Standard_EXPORT Standard_Boolean operator ==(const Handle(Units_Token)&,const Standard_CString);"
---Purpose: Returns true if the field <theword> and the string
-- <astring> are the same, false otherwise.
is static;
IsEqual(me ; atoken : Token from Units) returns Boolean
---Level: Internal
-- -- C++: alias "friend Standard_EXPORT Standard_Boolean operator ==(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns true if the field <theword> and the string
-- <theword> contained in the token <atoken> are the
-- same, false otherwise.
is static;
IsNotEqual(me ; astring : CString) returns Boolean
---Level: Internal
---C++: inline
-- ---C++: alias "friend Standard_EXPORT Standard_Boolean operator !=(const Handle(Units_Token)&,const Standard_CString);"
---Purpose: Returns false if the field <theword> and the string
-- <astring> are the same, true otherwise.
is static;
IsNotEqual(me ; atoken : Token from Units) returns Boolean
---Level: Internal
---C++: inline
-- -- C++: alias "friend Standard_EXPORT Standard_Boolean operator !=(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns false if the field <theword> and the string
-- <theword> contained in the token <atoken> are the
-- same, true otherwise.
is static;
IsLessOrEqual(me ; astring : CString) returns Boolean
---Level: Internal
---C++: inline
-- ---C++: alias "friend Standard_EXPORT Standard_Boolean operator <=(const Handle(Units_Token)&,const Standard_CString);"
---Purpose: Returns true if the field <theword> is strictly
-- contained at the beginning of the string <astring>,
-- false otherwise.
is static;
IsGreater(me ; astring : CString) returns Boolean
---Level: Internal
---C++: inline
-- ---C++: alias "friend Standard_EXPORT Standard_Boolean operator >(const Handle(Units_Token)&,const Standard_CString);"
---Purpose: Returns false if the field <theword> is strictly
-- contained at the beginning of the string <astring>,
-- true otherwise.
is static;
IsGreater(me ; atoken : Token from Units) returns Boolean
---Level: Internal
---C++: inline
-- ---C++: alias "friend Standard_EXPORT Standard_Boolean operator >(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns false if the field <theword> is strictly
-- contained at the beginning of the string <astring>,
-- true otherwise.
is static;
IsGreaterOrEqual(me ; atoken : Token from Units) returns Boolean
---Level: Internal
---C++: inline
-- ---C++: alias "friend Standard_EXPORT Standard_Boolean operator >=(const Handle(Units_Token)&,const Handle(Units_Token)&);"
---Purpose: Returns true if the string <astring> is strictly
-- contained at the beginning of the field <theword>
-- false otherwise.
is static;
Destroy ( me : mutable ) is virtual;
---Level: Internal
---Purpose: Destroies the Token
---C++: alias ~
Dump(me ; ashift , alevel : Integer)
---Level: Internal
---Purpose: Useful for debugging
is virtual;
fields
theword : AsciiString from TCollection;
themean : AsciiString from TCollection;
thevalue : Real;
thedimensions : Dimensions from Units;
end Token;
|