blob: 70f7b84ed3fd7353f0e2404ef2091b421e3cd265 (
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
|
-- File: TCollection_SeqNode.cdl
-- Created: Wed Jan 21 11:55:52 1998
-- Author: Kernel
-- <kernel@parigox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
class SeqNode from TCollection
inherits TShared from MMgt
uses SeqNodePtr from TCollection
is
Create(n,p : SeqNodePtr from TCollection) returns SeqNode from TCollection;
---C++: inline
Next(me) returns SeqNodePtr from TCollection;
---C++: inline
---C++: return &
Previous(me) returns SeqNodePtr from TCollection;
---C++: inline
---C++: return &
fields
myNext : SeqNodePtr from TCollection;
myPrevious : SeqNodePtr from TCollection;
end;
|