blob: a709cac49478f3fba11a0f492428b554c6d7e338 (
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
|
-- File: ApplicationContext.cdl
-- Created: Fri Dec 1 11:11:13 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class ApplicationContext from StepBasic
inherits TShared from MMgt
uses
HAsciiString from TCollection
is
Create returns mutable ApplicationContext;
---Purpose: Returns a ApplicationContext
Init (me : mutable;
aApplication : mutable HAsciiString from TCollection) is virtual;
-- Specific Methods for Field Data Access --
SetApplication(me : mutable; aApplication : mutable HAsciiString);
Application (me) returns mutable HAsciiString;
fields
application : HAsciiString from TCollection;
end ApplicationContext;
|