QtCore/qpair.h File Reference
|
template<class T1 , class T2 > |
Q_INLINE_TEMPLATE bool | operator== (const QPair< T1, T2 > &p1, const QPair< T1, T2 > &p2) |
|
template<class T1 , class T2 > |
Q_INLINE_TEMPLATE bool | operator!= (const QPair< T1, T2 > &p1, const QPair< T1, T2 > &p2) |
|
template<class T1 , class T2 > |
Q_INLINE_TEMPLATE bool | operator< (const QPair< T1, T2 > &p1, const QPair< T1, T2 > &p2) |
|
template<class T1 , class T2 > |
Q_INLINE_TEMPLATE bool | operator> (const QPair< T1, T2 > &p1, const QPair< T1, T2 > &p2) |
|
template<class T1 , class T2 > |
Q_INLINE_TEMPLATE bool | operator<= (const QPair< T1, T2 > &p1, const QPair< T1, T2 > &p2) |
|
template<class T1 , class T2 > |
Q_INLINE_TEMPLATE bool | operator>= (const QPair< T1, T2 > &p1, const QPair< T1, T2 > &p2) |
|
template<class T1 , class T2 > |
Q_OUTOFLINE_TEMPLATE QPair< T1, T2 > | qMakePair (const T1 &x, const T2 &y) |
|
template<class T1 , class T2 > |
QDataStream & | operator>> (QDataStream &s, QPair< T1, T2 > &p) |
|
template<class T1 , class T2 > |
QDataStream & | operator<< (QDataStream &s, const QPair< T1, T2 > &p) |
|
Q_INLINE_TEMPLATE bool operator== |
( |
const QPair< T1, T2 > & |
p1, |
|
|
const QPair< T1, T2 > & |
p2 |
|
) |
| |
Q_INLINE_TEMPLATE bool operator!= |
( |
const QPair< T1, T2 > & |
p1, |
|
|
const QPair< T1, T2 > & |
p2 |
|
) |
| |
Definition at line 74 of file qpair.h.
75 {
return !(p1 == p2); }
Q_INLINE_TEMPLATE bool operator< |
( |
const QPair< T1, T2 > & |
p1, |
|
|
const QPair< T1, T2 > & |
p2 |
|
) |
| |
Q_INLINE_TEMPLATE bool operator> |
( |
const QPair< T1, T2 > & |
p1, |
|
|
const QPair< T1, T2 > & |
p2 |
|
) |
| |
Q_INLINE_TEMPLATE bool operator<= |
( |
const QPair< T1, T2 > & |
p1, |
|
|
const QPair< T1, T2 > & |
p2 |
|
) |
| |
Q_INLINE_TEMPLATE bool operator>= |
( |
const QPair< T1, T2 > & |
p1, |
|
|
const QPair< T1, T2 > & |
p2 |
|
) |
| |
Q_OUTOFLINE_TEMPLATE QPair<T1, T2> qMakePair |
( |
const T1 & |
x, |
|
|
const T2 & |
y |
|
) |
| |
Go to the source code of this file.