~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/corelib/tools/qpair.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 1992-2005 Trolltech AS. All rights reserved.
 
4
**
 
5
** This file is part of the core module of the Qt Toolkit.
 
6
**
 
7
** This file may be distributed under the terms of the Q Public License
 
8
** as defined by Trolltech AS of Norway and appearing in the file
 
9
** LICENSE.QPL included in the packaging of this file.
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 as published by the Free Software
 
13
** Foundation and appearing in the file LICENSE.GPL included in the
 
14
** packaging of this file.
 
15
**
 
16
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
17
**   information about Qt Commercial License Agreements.
 
18
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
19
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
20
**
 
21
** Contact info@trolltech.com if any conditions of this licensing are
 
22
** not clear to you.
 
23
**
 
24
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
25
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
26
**
 
27
****************************************************************************/
 
28
 
 
29
#ifndef QPAIR_H
 
30
#define QPAIR_H
 
31
 
 
32
#include "QtCore/qdatastream.h"
 
33
 
 
34
template <class T1, class T2>
 
35
struct QPair
 
36
{
 
37
    typedef T1 first_type;
 
38
    typedef T2 second_type;
 
39
 
 
40
    QPair() : first(T1()), second(T2()) {}
 
41
    QPair(const T1 &t1, const T2 &t2) : first(t1), second(t2) {}
 
42
 
 
43
    QPair &operator=(const QPair &other)
 
44
    { first = other.first; second = other.second; return *this; }
 
45
 
 
46
    T1 first;
 
47
    T2 second;
 
48
};
 
49
 
 
50
template <class T1, class T2>
 
51
Q_INLINE_TEMPLATE bool operator==(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
 
52
{ return p1.first == p2.first && p1.second == p2.second; }
 
53
 
 
54
template <class T1, class T2>
 
55
Q_INLINE_TEMPLATE bool operator!=(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
 
56
{ return !(p1 == p2); }
 
57
 
 
58
template <class T1, class T2>
 
59
Q_INLINE_TEMPLATE bool operator<(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
 
60
{
 
61
    return p1.first < p2.first || (!(p2.first < p1.first) && p1.second < p2.second);
 
62
}
 
63
 
 
64
template <class T1, class T2>
 
65
Q_INLINE_TEMPLATE bool operator>(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
 
66
{
 
67
    return p2 < p1;
 
68
}
 
69
 
 
70
template <class T1, class T2>
 
71
Q_INLINE_TEMPLATE bool operator<=(const QPair<T1, T2> &p1, const QPair<T1, T2> &p2)
 
72
{
 
73
    return !(p2 < p1);
 
74
}
 
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
 
 
82
template <class T1, class T2>
 
83
Q_OUTOFLINE_TEMPLATE QPair<T1, T2> qMakePair(const T1 &x, const T2 &y)
 
84
{
 
85
    return QPair<T1, T2>(x, y);
 
86
}
 
87
 
 
88
#ifndef QT_NO_DATASTREAM
 
89
template <class T1, class T2>
 
90
inline QDataStream& operator>>(QDataStream& s, QPair<T1, T2>& p)
 
91
{
 
92
    s >> p.first >> p.second;
 
93
    return s;
 
94
}
 
95
 
 
96
template <class T1, class T2>
 
97
inline QDataStream& operator<<(QDataStream& s, const QPair<T1, T2>& p)
 
98
{
 
99
    s << p.first << p.second;
 
100
    return s;
 
101
}
 
102
#endif
 
103
 
 
104
#endif // QPAIR_H