OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / shared / cplusplus / Type.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
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.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33 // Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
34 //
35 // Permission is hereby granted, free of charge, to any person obtaining a copy
36 // of this software and associated documentation files (the "Software"), to deal
37 // in the Software without restriction, including without limitation the rights
38 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39 // copies of the Software, and to permit persons to whom the Software is
40 // furnished to do so, subject to the following conditions:
41 //
42 // The above copyright notice and this permission notice shall be included in
43 // all copies or substantial portions of the Software.
44 //
45 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
51 // THE SOFTWARE.
52
53 #include "Type.h"
54 #include "TypeVisitor.h"
55 #include "CoreTypes.h"
56 #include "Symbols.h"
57
58 using namespace CPlusPlus;
59
60 Type::Type()
61 { }
62
63 Type::~Type()
64 { }
65
66 bool Type::isUndefinedType() const
67 { return this == UndefinedType::instance(); }
68
69 bool Type::isVoidType() const
70 { return asVoidType() != 0; }
71
72 bool Type::isIntegerType() const
73 { return asIntegerType() != 0; }
74
75 bool Type::isFloatType() const
76 { return asFloatType() != 0; }
77
78 bool Type::isPointerType() const
79 { return asPointerType()  != 0; }
80
81 bool Type::isPointerToMemberType() const
82 { return asPointerToMemberType() != 0; }
83
84 bool Type::isReferenceType() const
85 { return asReferenceType() != 0; }
86
87 bool Type::isArrayType() const
88 { return asArrayType() != 0; }
89
90 bool Type::isNamedType() const
91 { return asNamedType() != 0; }
92
93 bool Type::isFunctionType() const
94 { return asFunctionType() != 0; }
95
96 bool Type::isNamespaceType() const
97 { return asNamespaceType() != 0; }
98
99 bool Type::isTemplateType() const
100 { return asTemplateType() != 0; }
101
102 bool Type::isClassType() const
103 { return asClassType() != 0; }
104
105 bool Type::isEnumType() const
106 { return asEnumType() != 0; }
107
108 bool Type::isForwardClassDeclarationType() const
109 { return asForwardClassDeclarationType() != 0; }
110
111 bool Type::isObjCClassType() const
112 { return asObjCClassType() != 0; }
113
114 bool Type::isObjCProtocolType() const
115 { return asObjCProtocolType() != 0; }
116
117 bool Type::isObjCMethodType() const
118 { return asObjCMethodType() != 0; }
119
120 bool Type::isObjCForwardClassDeclarationType() const
121 { return asObjCForwardClassDeclarationType() != 0; }
122
123 bool Type::isObjCForwardProtocolDeclarationType() const
124 { return asObjCForwardProtocolDeclarationType() != 0; }
125
126 void Type::accept(TypeVisitor *visitor)
127 {
128     if (visitor->preVisit(this))
129         accept0(visitor);
130     visitor->postVisit(this);
131 }
132
133 void Type::accept(Type *type, TypeVisitor *visitor)
134 {
135     if (! type)
136         return;
137
138     type->accept(visitor);
139 }
140
141 bool Type::matchType(const Type *otherType, TypeMatcher *matcher) const
142 {
143     return matchType0(otherType, matcher);
144 }
145