The QValueListConstIterator class provides an iterator for QValueList. More...
#include <qvaluelist.h>
In contrast to QValueListIterator this class is used to iterate over a const list. It does not allow to modify the values of the list since this would break the const semantics.
For more informations on QValueList iterators see QValueListIterator.
See also QValueListIterator and QValueList.
Creates un uninitialized iterator.
Internal function.
Constructs a copy of the iterator it.
Constructs a copy of the iterator it.
Compares both iterators and returns TRUE if they point to different items.
Asterix operator. Returns a reference to the current iterator item.
Postfix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the end of the list. Incrementing the iterator as returned by end() causes undefined results.
Prefix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the end of the list. Incrementing the iterator as returned by end() causes undefined results.
Postfix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the beginning of the list. Decrementing the iterator as returned by begin() causes undefined results.
Prefix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the beginning of the list. Decrementing the iterator as returned by begin() causes undefined results.
Compares both iterators and returns TRUE if they point to the same item.
Search the documentation, FAQ, qt-interest archive and more (uses
www.trolltech.com):
This file is part of the Qt toolkit, copyright © 1995-2000 Trolltech, all rights reserved.
Copyright © 2000 Trolltech | Trademarks | Qt version 2.2.1
|