blob: 888f46b2abe854d8f30ff2ac7d73a5c0bb4ae971 (
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
|
-- File: TNaming_DeltaOnModification.cdl
-- Created: Wed Dec 3 10:27:33 1997
-- Author: Yves FRICAUD
-- <yfr@claquox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
private class DeltaOnModification from TNaming inherits DeltaOnModification from TDF
---Purpose: This class provides default services for an
-- AttributeDelta on a MODIFICATION action.
--
-- Applying this AttributeDelta means GOING BACK to
-- the attribute previously registered state.
uses
Attribute from TDF,
HArray1OfShape from TopTools,
NamedShape from TNaming
is
Create (NS : NamedShape from TNaming)
returns mutable DeltaOnModification from TNaming;
---Purpose: Initializes a TDF_DeltaOnModification.
Apply (me : mutable)
is redefined virtual;
---Purpose: Applies the delta to the attribute.
fields
myOld : HArray1OfShape from TopTools;
myNew : HArray1OfShape from TopTools;
end DeltaOnModification;
|