qpair.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtCore module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QPAIR_H
  38. #define QPAIR_H
  39. #include <QtCore/qdatastream.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Core)
  43. template <class T1, class T2>
  44. struct QPair
  45. {
  46.     typedef T1 first_type;
  47.     typedef T2 second_type;
  48.     QPair() : first(T1()), second(T2()) {}
  49.     QPair(const T1 &t1, const T2 &t2) : first(t1), second(t2) {}
  50.     QPair<T1, T2> &operator=(const QPair<T1, T2> &other)
  51.     { first = other.first; second = other.second; return *this; }
  52.     T1 first;
  53.     T2 second;
  54. };
  55. template <class T1, class T2>
  56. Q_INLINE_TEMPLATE bool operator==(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
  57. { return p1.first == p2.first && p1.second == p2.second; }
  58. template <class T1, class T2>
  59. Q_INLINE_TEMPLATE bool operator!=(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
  60. { return !(p1 == p2); }
  61. template <class T1, class T2>
  62. Q_INLINE_TEMPLATE bool operator<(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
  63. {
  64.     return p1.first < p2.first || (!(p2.first < p1.first) && p1.second < p2.second);
  65. }
  66. template <class T1, class T2>
  67. Q_INLINE_TEMPLATE bool operator>(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
  68. {
  69.     return p2 < p1;
  70. }
  71. template <class T1, class T2>
  72. Q_INLINE_TEMPLATE bool operator<=(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
  73. {
  74.     return !(p2 < p1);
  75. }
  76. template <class T1, class T2>
  77. Q_INLINE_TEMPLATE bool operator>=(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
  78. {
  79.     return !(p1 < p2);
  80. }
  81. template <class T1, class T2>
  82. Q_OUTOFLINE_TEMPLATE QPair<T1, T2> qMakePair(const T1 &x, const T2 &y)
  83. {
  84.     return QPair<T1, T2>(x, y);
  85. }
  86. #ifndef QT_NO_DATASTREAM
  87. template <class T1, class T2>
  88. inline QDataStream& operator>>(QDataStream& s, QPair<T1, T2>& p)
  89. {
  90.     s >> p.first >> p.second;
  91.     return s;
  92. }
  93. template <class T1, class T2>
  94. inline QDataStream& operator<<(QDataStream& s, const QPair<T1, T2>& p)
  95. {
  96.     s << p.first << p.second;
  97.     return s;
  98. }
  99. #endif
  100. QT_END_NAMESPACE
  101. QT_END_HEADER
  102. #endif // QPAIR_H