Import qtxmlpatterns 5.0.0-beta1
[profile/ivi/qtxmlpatterns.git] / tests / auto / xmlpatternssdk / Global.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
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)
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