|
|||||||||||||||||||||||||||||||||||||||||||||||||
Home
|
You are here: Home > Support > Reference v1.0 | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Main Page | Modules | Namespace List | Class Hierarchy | Class List | Namespace Members | Class Members
TXmListIterator Class Template ReferenceList of all members.Detailed Descriptiontemplate<class C>
Iterator template used to iterate through the elements within a TXmList container.
|
|||||||||||||||||||||||||||||||||||||||||||||||||
Public Member Functions | |
| TXmListIterator () | |
| Construct an iterator referencing no element. | |
| TXmListIterator (C *item) | |
| Construct an iterator referencing the given element. | |
| XmListItemBox * | Cur () const |
| Return the element, the iterator is referencing. | |
| TXmListIterator | operator++ () |
| Iterate to the next element. | |
| TXmListIterator | operator++ (int) |
| Iterate to the next element. | |
| TXmListIterator | operator-- () |
| Iterate to the previous element. | |
| TXmListIterator | operator-- (int) |
| Iterate to the previous element. | |
| C & | operator * () const |
| Return the element, the iterator is referencing. | |
| C * | operator-> () const |
| Return the element, the iterator is referencing. | |
| bool | operator!= (const TXmListIterator &i) const |
| Return true, if two iterators referencing different elements. | |
| bool | operator== (const TXmListIterator &i) const |
| Return true, if two iterators referencing the same element. | |