OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / shared / cplusplus / CPlusPlusForwardDeclarations.h
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 (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32 // Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
33 //
34 // Permission is hereby granted, free of charge, to any person obtaining a copy
35 // of this software and associated documentation files (the "Software"), to deal
36 // in the Software without restriction, including without limitation the rights
37 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38 // copies of the Software, and to permit persons to whom the Software is
39 // furnished to do so, subject to the following conditions:
40 //
41 // The above copyright notice and this permission notice shall be included in
42 // all copies or substantial portions of the Software.
43 //
44 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
50 // THE SOFTWARE.
51
52 #ifndef CPLUSPLUS_CPLUSPLUSFORWARDDECLARATIONS_H
53 #define CPLUSPLUS_CPLUSPLUSFORWARDDECLARATIONS_H
54
55 #include <cstdlib>
56 #include <cstddef>
57
58 #ifndef CPLUSPLUS_WITHOUT_QT
59 #  include <QtCore/qglobal.h>
60
61 #  if defined(CPLUSPLUS_BUILD_LIB)
62 #    define CPLUSPLUS_EXPORT Q_DECL_EXPORT
63 #  elif defined(CPLUSPLUS_BUILD_STATIC_LIB)
64 #    define CPLUSPLUS_EXPORT
65 #  else
66 #    define CPLUSPLUS_EXPORT Q_DECL_IMPORT
67 #  endif
68 #else
69 #  define CPLUSPLUS_EXPORT
70 #endif
71
72 namespace CPlusPlus {
73
74 class TranslationUnit;
75 class Control;
76 class MemoryPool;
77 class DiagnosticClient;
78
79 class Identifier;
80 class Literal;
81 class StringLiteral;
82 class NumericLiteral;
83
84 class SymbolTable;
85
86 // names
87 class NameVisitor;
88 class Name;
89 class Identifier;
90 class TemplateNameId;
91 class DestructorNameId;
92 class OperatorNameId;
93 class ConversionNameId;
94 class QualifiedNameId;
95 class SelectorNameId;
96
97 // types
98 class TypeMatcher;
99 class FullySpecifiedType;
100 class TypeVisitor;
101 class Type;
102 class UndefinedType;
103 class VoidType;
104 class IntegerType;
105 class FloatType;
106 class PointerToMemberType;
107 class PointerType;
108 class ReferenceType;
109 class ArrayType;
110 class NamedType;
111
112 // symbols
113 class SymbolVisitor;
114 class Symbol;
115 class Scope;
116 class UsingNamespaceDirective;
117 class UsingDeclaration;
118 class Declaration;
119 class Argument;
120 class TypenameArgument;
121 class Function;
122 class Namespace;
123 class NamespaceAlias;
124 class Template;
125 class BaseClass;
126 class Block;
127 class Class;
128 class Enum;
129 class ForwardClassDeclaration;
130
131 class Token;
132
133 // Qt symbols
134 class QtPropertyDeclaration;
135 class QtEnum;
136
137 // Objective-C symbols
138 class ObjCBaseClass;
139 class ObjCBaseProtocol;
140 class ObjCClass;
141 class ObjCForwardClassDeclaration;
142 class ObjCProtocol;
143 class ObjCForwardProtocolDeclaration;
144 class ObjCMethod;
145 class ObjCPropertyDeclaration;
146
147 } // namespace CPlusPlus
148
149 #endif // CPLUSPLUS_CPLUSPLUSFORWARDDECLARATIONS_H