QList< T >::iterator Class Reference
#include <qlist.h>
template<typename T>
class QList< T >::iterator
Definition at line 181 of file qlist.h.
T* operator-> |
( |
void |
| ) |
const |
|
inline |
T& operator[] |
( |
int |
j | ) |
const |
|
inline |
bool operator== |
( |
const iterator & |
o | ) |
const |
|
inline |
bool operator!= |
( |
const iterator & |
o | ) |
const |
|
inline |
bool operator< |
( |
const iterator & |
other | ) |
const |
|
inline |
Definition at line 198 of file qlist.h.
198 {
return i < other.i; }
bool operator<= |
( |
const iterator & |
other | ) |
const |
|
inline |
Definition at line 199 of file qlist.h.
199 {
return i <= other.i; }
bool operator> |
( |
const iterator & |
other | ) |
const |
|
inline |
Definition at line 200 of file qlist.h.
200 {
return i > other.i; }
bool operator>= |
( |
const iterator & |
other | ) |
const |
|
inline |
Definition at line 201 of file qlist.h.
201 {
return i >= other.i; }
Definition at line 207 of file qlist.h.
208 {
return i < other.i; }
Definition at line 209 of file qlist.h.
210 {
return i <= other.i; }
Definition at line 211 of file qlist.h.
212 {
return i > other.i; }
Definition at line 213 of file qlist.h.
214 {
return i >= other.i; }
Definition at line 216 of file qlist.h.
216 { ++
i;
return *
this; }
Definition at line 217 of file qlist.h.
217 { Node *
n =
i; ++
i;
return n; }
Definition at line 218 of file qlist.h.
218 {
i--;
return *
this; }
Definition at line 219 of file qlist.h.
219 { Node *
n =
i;
i--;
return n; }
Definition at line 220 of file qlist.h.
220 {
i+=j;
return *
this; }
Definition at line 221 of file qlist.h.
221 {
i-=j;
return *
this; }
Definition at line 224 of file qlist.h.
224 {
return int(
i - j.i); }
unsigned int(APIENTRYP PFNGLXGETAGPOFFSETMESAPROC)(const void *pointer)
The documentation for this class was generated from the following file: