#include <OTC/collctn/link.hh> class OTC_Link : public OTC_Linkable {
protected:
inline OTC_Link();
~OTC_Link();
};
OTC_Link
class is a derived version of OTC_Linkable
. If
you wish to place any objects in a list of type OTC_LinkList
,
your class will need to be derived from this class.
~OTC_Link();
unlink()
being called from
the OTC_Linkable
destructor.
OTC_Link
must be
created on the free store, using new
.
OTC_Linkable
, OTC_Anchor
, OTC_LinkIterator