TDeltaQue Class Reference

#include <e32std.h>

class TDeltaQue : public TDeltaQueBase

Inherits from

Detailed Description

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.

See also: TDeltaQueLink TDeltaQueLink::iDelta

Constructor & Destructor Documentation

TDeltaQue ( )

TDeltaQue()[inline]

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.

See also: TDblQueBase::SetOffset

TDeltaQue ( TInt )

TDeltaQue(TIntaOffset)[inline, explicit]

Constructs an empty list header and sets the offset of the link object to the specified value.

TDeltaQueBase::iFirstDelta is set to NULL.

See also: _FOFF

Parameters
aOffsetThe offset of the link object from the start of a list element. The macro _FOFF can be used to calculate this value.
Panic Codes
USER78, if aOffset is not divisible by four.

Member Function Documentation

Add ( T &, TInt )

voidAdd(T &aRef,
TIntaDelta
)[inline]

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.

Parameters
aRefThe list element to be inserted.
aDeltaThe 'distance' from the nominal zero point.

Remove ( T & )

voidRemove(T &aRef)[inline]

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.

Parameters
aRefThe list element to be removed.

RemoveFirst ( )

T *RemoveFirst()[inline]

Removes the first list element from the linked list if its delta value is zero or negative.

Return Value
A pointer to the element removed from the linked list. This is NULL, if the first element has a positive delta value.