1 | /****************************************************************************
|
---|
2 | * ** * ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
3 | ** Contact: Qt Software Information ([email protected])
|
---|
4 | * **
|
---|
5 | * ** This file is part of the Patternist project on Trolltech Labs. * **
|
---|
6 | * ** $QT_BEGIN_LICENSE:LGPL$
|
---|
7 | ** Commercial Usage
|
---|
8 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
9 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
10 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
11 | ** a written agreement between you and Nokia.
|
---|
12 | **
|
---|
13 | ** GNU Lesser General Public License Usage
|
---|
14 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
15 | ** General Public License version 2.1 as published by the Free Software
|
---|
16 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
17 | ** packaging of this file. Please review the following information to
|
---|
18 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
19 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
20 | **
|
---|
21 | ** In addition, as a special exception, Nokia gives you certain
|
---|
22 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
23 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
24 | ** package.
|
---|
25 | **
|
---|
26 | ** GNU General Public License Usage
|
---|
27 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
28 | ** General Public License version 3.0 as published by the Free Software
|
---|
29 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
30 | ** packaging of this file. Please review the following information to
|
---|
31 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
32 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
33 | **
|
---|
34 | ** If you are unsure which license is appropriate for your use, please
|
---|
35 | ** contact the sales department at [email protected].
|
---|
36 | ** $QT_END_LICENSE$
|
---|
37 | * **
|
---|
38 | * ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
---|
39 | * ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
---|
40 | * **
|
---|
41 | * ****************************************************************************/
|
---|
42 |
|
---|
43 | //
|
---|
44 | // W A R N I N G
|
---|
45 | // -------------
|
---|
46 | //
|
---|
47 | // This file is not part of the Qt API. It exists purely as an
|
---|
48 | // implementation detail. This header file may change from version to
|
---|
49 | // version without notice, or even be removed.
|
---|
50 | //
|
---|
51 | // We mean it.
|
---|
52 |
|
---|
53 | #ifndef Patternist_main_h
|
---|
54 | #define Patternist_main_h
|
---|
55 |
|
---|
56 | #include <QCoreApplication>
|
---|
57 |
|
---|
58 | QT_BEGIN_HEADER
|
---|
59 |
|
---|
60 | QT_BEGIN_NAMESPACE
|
---|
61 |
|
---|
62 | class QXmlPatternistCLI
|
---|
63 | {
|
---|
64 | public:
|
---|
65 | Q_DECLARE_TR_FUNCTIONS(QXmlPatternistCLI)
|
---|
66 | private:
|
---|
67 | inline QXmlPatternistCLI();
|
---|
68 | Q_DISABLE_COPY(QXmlPatternistCLI)
|
---|
69 | };
|
---|
70 |
|
---|
71 | QT_END_NAMESPACE
|
---|
72 |
|
---|
73 | QT_END_HEADER
|
---|
74 |
|
---|
75 | #endif
|
---|