8326b9b232f03c539bc5e3fd61a8a6a6f8a2d884
[profile/ivi/qtxmlpatterns.git] / src / xmlpatterns / type / qatomiccasterlocator_p.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 QtXmlPatterns module 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 //
43 //  W A R N I N G
44 //  -------------
45 //
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.
49 //
50 // We mean it.
51
52 #ifndef Patternist_AtomicCasterLocator_H
53 #define Patternist_AtomicCasterLocator_H
54
55 #include <private/qatomictypedispatch_p.h>
56
57 QT_BEGIN_HEADER
58
59 QT_BEGIN_NAMESPACE
60
61 namespace QPatternist
62 {
63     /**
64      * @author Frans Englich <frans.englich@nokia.com>
65      */
66     class AtomicCasterLocator : public AtomicTypeVisitor
67     {
68     public:
69         typedef QExplicitlySharedDataPointer<AtomicCasterLocator> Ptr;
70
71         virtual AtomicTypeVisitorResult::Ptr visit(const AnyAtomicType *,
72                                                    const SourceLocationReflection *const reflection) const;
73         virtual AtomicTypeVisitorResult::Ptr visit(const AnyURIType *,
74                                                    const SourceLocationReflection *const reflection) const;
75         virtual AtomicTypeVisitorResult::Ptr visit(const Base64BinaryType *,
76                                                    const SourceLocationReflection *const reflection) const;
77         virtual AtomicTypeVisitorResult::Ptr visit(const BooleanType *,
78                                                    const SourceLocationReflection *const reflection) const;
79         virtual AtomicTypeVisitorResult::Ptr visit(const DateTimeType *,
80                                                    const SourceLocationReflection *const reflection) const;
81         virtual AtomicTypeVisitorResult::Ptr visit(const DateType *,
82                                                    const SourceLocationReflection *const reflection) const;
83         virtual AtomicTypeVisitorResult::Ptr visit(const DayTimeDurationType *,
84                                                    const SourceLocationReflection *const reflection) const;
85         virtual AtomicTypeVisitorResult::Ptr visit(const DecimalType *,
86                                                    const SourceLocationReflection *const reflection) const;
87         virtual AtomicTypeVisitorResult::Ptr visit(const DoubleType *,
88                                                    const SourceLocationReflection *const reflection) const;
89         virtual AtomicTypeVisitorResult::Ptr visit(const DurationType *,
90                                                    const SourceLocationReflection *const reflection) const;
91         virtual AtomicTypeVisitorResult::Ptr visit(const FloatType *,
92                                                    const SourceLocationReflection *const reflection) const;
93         virtual AtomicTypeVisitorResult::Ptr visit(const GDayType *,
94                                                    const SourceLocationReflection *const reflection) const;
95         virtual AtomicTypeVisitorResult::Ptr visit(const GMonthDayType *,
96                                                    const SourceLocationReflection *const reflection) const;
97         virtual AtomicTypeVisitorResult::Ptr visit(const GMonthType *,
98                                                    const SourceLocationReflection *const reflection) const;
99         virtual AtomicTypeVisitorResult::Ptr visit(const GYearMonthType *,
100                                                    const SourceLocationReflection *const reflection) const;
101         virtual AtomicTypeVisitorResult::Ptr visit(const GYearType *,
102                                                    const SourceLocationReflection *const reflection) const;
103         virtual AtomicTypeVisitorResult::Ptr visit(const HexBinaryType *,
104                                                    const SourceLocationReflection *const reflection) const;
105         virtual AtomicTypeVisitorResult::Ptr visit(const IntegerType *,
106                                                    const SourceLocationReflection *const reflection) const;
107         virtual AtomicTypeVisitorResult::Ptr visit(const NOTATIONType *,
108                                                    const SourceLocationReflection *const reflection) const;
109         virtual AtomicTypeVisitorResult::Ptr visit(const QNameType *,
110                                                    const SourceLocationReflection *const reflection) const;
111         virtual AtomicTypeVisitorResult::Ptr visit(const StringType *,
112                                                    const SourceLocationReflection *const reflection) const;
113         virtual AtomicTypeVisitorResult::Ptr visit(const SchemaTimeType *,
114                                                    const SourceLocationReflection *const reflection) const;
115         virtual AtomicTypeVisitorResult::Ptr visit(const UntypedAtomicType *,
116                                                    const SourceLocationReflection *const reflection) const;
117         virtual AtomicTypeVisitorResult::Ptr visit(const YearMonthDurationType *,
118                                                    const SourceLocationReflection *const reflection) const;
119     };
120 }
121
122 QT_END_NAMESPACE
123
124 QT_END_HEADER
125
126 #endif