blob: 39825485c6a53369c62e086b8ea66dc891799248 (
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: StepBasic_DocumentReference.cdl
-- Created: Tue Jun 30 14:44:51 1998
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
deferred class DocumentReference from StepBasic inherits TShared from MMgt
uses
Document from StepBasic,
HAsciiString from TCollection
is
Init0 (me : mutable;
aAssignedDocument : Document;
aSource : HAsciiString);
AssignedDocument (me) returns Document;
SetAssignedDocument (me : mutable; aAssignedDocument : Document);
Source (me) returns HAsciiString;
SetSource (me : mutable; aSource : HAsciiString);
fields
theAssignedDocument : Document;
theSource : HAsciiString;
end DocumentReference;
|