Update copyright year in license headers.
[profile/ivi/qtxmlpatterns.git] / tests / auto / xmlpatternssdk / Global.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 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 test suite of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef PatternistSDK_Global_H
43 #define PatternistSDK_Global_H
44
45 #include <QString>
46
47 #include <private/qitem_p.h>
48 #include <private/qnamepool_p.h>
49
50 #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN)
51 #   ifdef Q_PATTERNISTSDK_BUILDING
52         #define Q_PATTERNISTSDK_EXPORT __declspec(dllexport)
53     #else
54         #define Q_PATTERNISTSDK_EXPORT __declspec(dllimport)
55     #endif
56 #else
57     #define Q_PATTERNISTSDK_EXPORT
58 #endif
59
60 /**
61  * @short Contains testing utilities for Patternist, interfacing W3C's XQuery Test Suite.
62  *
63  * @see <a href="http://www.w3.org/XML/Query/test-suite/">XML Query Test Suite</a>
64  * @author Frans Englich <frans.englich@nokia.com>
65  */
66 QT_BEGIN_HEADER
67
68 QT_BEGIN_NAMESPACE
69
70 namespace QPatternistSDK
71 {
72     /**
73      * @short Contains global constants.
74      *
75      * @ingroup PatternistSDK
76      * @author Frans Englich <frans.englich@nokia.com>
77      */
78     class Q_PATTERNISTSDK_EXPORT Global
79     {
80     public:
81
82         /**
83          * The namespace which the XQTS test case catalog(specified by Catalog.xsd)
84          * is in. The namespace is: <tt>http://www.w3.org/2005/02/query-test-XQTSCatalog</tt>
85          */
86         static const QString xqtsCatalogNS;
87
88         /**
89          * The namespace which the XQTS test results collection(specified by XQTSResult.xsd)
90          * is in. The namespace is: <tt>http://www.w3.org/2005/02/query-test-XQTSResult</tt>
91          */
92         static const QString xqtsResultNS;
93
94         /**
95          * The organization which created PatternistSDK. It say something
96          * in the direction of "Patternist Team", and is used for QSettings and the like.
97          */
98         static const QString organizationName;
99
100         /**
101          * The namespace which W3C's XSL-T test suite resides in.
102          */
103         static const QString xsltsCatalogNS;
104
105         /**
106          * The version of PatternistSDK. The value has currently no other
107          * meaning than that larger means older. This version information is supplied to
108          * QMainWindow::restoreState() and QMainWindow::saveState().
109          */
110         static const qint16 versionNumber;
111
112         /**
113          * Parses the lexical space of @c xs:boolean,
114          * with the exception that the empty string is considered @c false.
115          */
116         static bool readBoolean(const QString &lexicalSpace);
117
118         static QPatternist::NamePool::Ptr namePool();
119         static QXmlNamePool namePoolAsPublic();
120     };
121 }
122
123 QT_END_NAMESPACE
124
125 QT_END_HEADER
126
127 #endif
128 // vim: et:ts=4:sw=4:sts=4