Location:
e32std.h
class TDeltaQue : public TDeltaQueBase;
A templated class that provides the behaviour for managing a doubly linked list in which elements represent values which are increments, or deltas, on the value represented by a preceding element.
The list is ordered so that the head of the queue represents a nominal zero point.
The delta value of a new element represents its 'distance' from the nominal zero point. The new element is added into the list, and the delta values of adjacent elements (and of the new element, if necessary) are adjusted, so that the sum of all deltas, up to and including the new element, is the same as the new element's intended 'distance' from the nominal zero point.
A common use for a list of this type is as a queue of timed events, where the delta values represent the intervals between the events.
The delta value is defined by the value of the TDeltaQueLink::iDelta
member of the link element.
The template parameter defines the type of element that forms the doubly linked list and is the class that acts as host to the link object.
TDblQueBase
- A base class that provides implementation for the doubly linked list header
TDeltaQueBase
- A base class that provides implementation for the
TDeltaQue
- A templated class that provides the behaviour for managing a doubly linked list in which elements represent values which
are increments, or deltas, on the value represented by a preceding element
Defined in TDeltaQue
:
Add()
, Remove()
, RemoveFirst()
, TDeltaQue()
, TDeltaQue()
Inherited from TDblQueBase
:
DoAddFirst()
,
DoAddLast()
,
DoAddPriority()
,
IsEmpty()
,
SetOffset()
,
__DbgTestEmpty()
,
iHead
,
iOffset
Inherited from TDeltaQueBase
:
CountDown()
,
DoAddDelta()
,
DoRemove()
,
DoRemoveFirst()
,
FirstDelta()
,
Reset()
,
iFirstDelta
inline TDeltaQue();
Constructs an empty list header and sets the offset value of the link object to zero.
In practice, never assume that the offset of the link object from the start of a list element is zero, even if the link object is declared as the first data member in the list element class.
If this default constructor is used, then call the TDblQueBase::SetOffset()
function in the base class to ensure that the offset value is set correctly.
TDeltaQueBase::iFirstDelta
is set to NULL.
inline TDeltaQue(TInt aOffset);
Constructs an empty list header and sets the offset of the link object to the specified value.
TDeltaQueBase::iFirstDelta
is set to NULL.
|
|
inline void Add(T &aRef, TInt aDelta);
Adds the specified list element, having the specified 'distance' from the nominal zero point, into the list.
The element is added into the list, the adjacent delta values adjusted, and a suitable delta value assigned to the new element, so that the new element is at the specified 'distance' from the nominal zero point.
|
inline void Remove(T &aRef);
Removes the specified list element from the linked list.
The delta value of the element following the removed element is adjusted so that its 'distance' from the nominal zero point remains the same.
|
inline T *RemoveFirst();
Removes the first list element from the linked list if its delta value is zero or negative.
|