Symbian
Symbian OS Library

SYMBIAN OS V9.3

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



Location: thttpfilteriterator.h
Link against: http.lib

Class THTTPFilterIterator

class THTTPFilterIterator;

Description

An iterator for RHTTPFilterCollection. The iterator can iterate over a subset of the filters in the collection, depending on how it was created. See RHTTPFilterCollection::Query for more details. In the documentation here, 'the collection' always refers to the filters that this iterator can see.

Members

Defined in THTTPFilterIterator:
AtEnd(), First(), THTTPFilterIterator(), operator *(), operator()(), operator++(), operator->()


Construction and destruction


THTTPFilterIterator()

inline THTTPFilterIterator();

Description

Non-initialised constructor. Note, to get an initialised one that actualy points to a filter collection, use RHTTPFilterCollection::Query

[Top]


Member functions


First()

inline void First();

Description

Moves the iterator to the first member of the collection


AtEnd()

IMPORT_C TBool AtEnd() const;

Description

Returns ETrue if the iterator is at the end of the collection

Return value

TBool


operator++()

IMPORT_C THTTPFilterIterator &operator++();

Description

Moves on to the next item in the collection

Return value

THTTPFilterIterator &


operator()()

IMPORT_C const THTTPFilterRegistration &operator()() const;

Description

Returns the filter that the iterator is pointing at

Return value

const THTTPFilterRegistration &


operator *()

inline const THTTPFilterRegistration &operator *() const;

Description

Returns the filter that the iterator is pointing at

Return value

const THTTPFilterRegistration &


operator->()

inline const THTTPFilterRegistration &operator->() const;

Description

Returns the filter that the iterator is pointing at

Return value

const THTTPFilterRegistration &