Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <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(RStringF) for more details. In the documentation here, 'the collection' always refers to the filters that this iterator can see.

Members

Defined in THTTPFilterIterator:


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(RStringF)

[Top]


Member functions


First()

inline void First();

Description

Moves the iterator to the first member of the collection


AtEnd()const

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()()const

IMPORT_C const THTTPFilterRegistration& operator()() const;

Description

Returns the filter that the iterator is pointing at

Return value

const THTTPFilterRegistration &


operator *()const

inline const THTTPFilterRegistration& operator *() const;

Description

Returns the filter that the iterator is pointing at

Return value

const THTTPFilterRegistration &


operator->()const

inline const THTTPFilterRegistration& operator->() const;

Description

Returns the filter that the iterator is pointing at

Return value

const THTTPFilterRegistration &