Fixing some GCC warnings
[qt-netbsd.git] / src / xmlpatterns / data / qsorttuple_p.h
blob4caa0fa1744bca5d05ea8a4c15cf37419581b117
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
43 // W A R N I N G
44 // -------------
46 // This file is not part of the Qt API. It exists purely as an
47 // implementation detail. This header file may change from version to
48 // version without notice, or even be removed.
50 // We mean it.
52 #ifndef Patternist_SortTuple_H
53 #define Patternist_SortTuple_H
55 #include "qitem_p.h"
56 #include "qitem_p.h"
57 #include "qitemtype_p.h"
59 QT_BEGIN_HEADER
61 QT_BEGIN_NAMESPACE
63 namespace QPatternist
65 /**
66 * @short Represents a value and its sort keys
67 * in FLOWR's <tt>order by</tt> clause.
69 * SortTuple doesn't correspond to anything in the XPath Data Model and
70 * can therefore well be described as an exotic implementation detail.
71 * Most of its functions asserts because it makes no sense to
72 * call them.
74 * SortTuple exclusively exists for use with the expressions OrderBy and
75 * ReturnOrderBy, and acts as a carrier between those two for sort keys and
76 * source values.
78 * @ingroup Patternist_xdm
79 * @author Frans Englich <frans.englich@nokia.com>
81 class SortTuple : public AtomicValue
83 public:
84 /**
85 * @p aSortKeys may be empty.
87 inline SortTuple(const Item::Iterator::Ptr &aValue,
88 const Item::Vector &aSortKeys) : m_sortKeys(aSortKeys),
89 m_value(aValue)
91 Q_ASSERT(m_value);
92 Q_ASSERT(!m_sortKeys.isEmpty());
95 /**
96 * A smart pointer wrapping SortTuple instances.
98 typedef QExplicitlySharedDataPointer<SortTuple> Ptr;
101 * This function is sometimes called by Literal::description().
102 * This function simply returns "SortTuple".
104 virtual QString stringValue() const;
107 * @short Always asserts.
109 virtual Item::Iterator::Ptr typedValue() const;
112 * @short Always asserts.
114 virtual bool isAtomicValue() const;
117 * @short Always asserts.
119 virtual bool isNode() const;
122 * @short Always asserts.
124 virtual bool hasError() const;
126 virtual ItemType::Ptr type() const;
128 inline const Item::Vector &sortKeys() const
130 return m_sortKeys;
133 inline const Item::Iterator::Ptr &value() const
135 return m_value;
138 private:
139 const Item::Vector m_sortKeys;
140 const Item::Iterator::Ptr m_value;
144 QT_END_NAMESPACE
146 QT_END_HEADER
148 #endif