Symbian
Symbian OS Library

SYMBIAN OS V9.3

[Index] [Spacer] [Previous] [Next]



How to construct an iterator

To create an iterator for a singly linked list of CMyClass elements, defined as:

class CMyClass : public CBase
    {
    ...
    TSglQueLink iSlink;
    ...
    };

first construct a header:

TSglQue<CMyClass> queHeader(_FOFF(CMyClass,islink));

and then construct the iterator. The iterator requires the header at construction time but the list can be empty:

TSglQueIter<CMyClass> queIter(queHeader);

The TSglQueIter class takes a class template parameter that defines the type of object which is to form an element of the list.