|
User Documentation |
|
Centre for Vision, Speech & Signal Processing |
Comments:
It is a basic building unit of double-linked lists.
Variables:
- DLinkC * succ;
-
the next element
- DLinkC * pred;
-
the previous element
Methods:
- DLinkC()
-
Creates one double-link. The links are undefined.
- DLinkC(const DLinkC & link)
-
Copy constructor.
- DLinkC(DLinkC * s,DLinkC * p)
-
Constructor from specific items: the successor 's', the predecessor 'p'.
Modifications of the object
---------------------------
- void Swap()
-
Swaps the links in this double link element. If there are
other elements linked to this element, their links are not
changed!!
- void SetSelfPointing()
-
Set both links to point to this object.
- ostream & operator<<(ostream & s,const DLinkC & elm)
-
|
Programmer:Radek Marik, Documentation by CxxDoc: Tue Mar 20 10:48:08 2001
|