OSDN Git Service

It's 2011 now.
[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 (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 #ifndef CPLUSPLUS_CPLUSPLUSFORWARDDECLARATIONS_H
54 #define CPLUSPLUS_CPLUSPLUSFORWARDDECLARATIONS_H
55
56 #include <cstdlib>
57 #include <cstddef>
58
59 #ifndef CPLUSPLUS_WITHOUT_QT
60 #  include <QtCore/qglobal.h>
61
62 #  if defined(CPLUSPLUS_BUILD_LIB)
63 #    define CPLUSPLUS_EXPORT Q_DECL_EXPORT
64 #  elif defined(CPLUSPLUS_BUILD_STATIC_LIB)
65 #    define CPLUSPLUS_EXPORT
66 #  else
67 #    define CPLUSPLUS_EXPORT Q_DECL_IMPORT
68 #  endif
69 #else
70 #  define CPLUSPLUS_EXPORT
71 #endif
72
73 namespace CPlusPlus {
74
75 class TranslationUnit;
76 class Control;
77 class MemoryPool;
78 class DiagnosticClient;
79
80 class Identifier;
81 class Literal;
82 class StringLiteral;
83 class NumericLiteral;
84
85 class SymbolTable;
86
87 // names
88 class NameVisitor;
89 class Name;
90 class Identifier;
91 class TemplateNameId;
92 class DestructorNameId;
93 class OperatorNameId;
94 class ConversionNameId;
95 class QualifiedNameId;
96 class SelectorNameId;
97
98 // types
99 class TypeMatcher;
100 class FullySpecifiedType;
101 class TypeVisitor;
102 class Type;
103 class UndefinedType;
104 class VoidType;
105 class IntegerType;
106 class FloatType;
107 class PointerToMemberType;
108 class PointerType;
109 class ReferenceType;
110 class ArrayType;
111 class NamedType;
112
113 // symbols
114 class SymbolVisitor;
115 class Symbol;
116 class Scope;
117 class UsingNamespaceDirective;
118 class UsingDeclaration;
119 class Declaration;
120 class Argument;
121 class TypenameArgument;
122 class Function;
123 class Namespace;
124 class NamespaceAlias;
125 class Template;
126 class BaseClass;
127 class Block;
128 class Class;
129 class Enum;
130 class ForwardClassDeclaration;
131
132 class Token;
133
134 // Qt symbols
135 class QtPropertyDeclaration;
136 class QtEnum;
137
138 // Objective-C symbols
139 class ObjCBaseClass;
140 class ObjCBaseProtocol;
141 class ObjCClass;
142 class ObjCForwardClassDeclaration;
143 class ObjCProtocol;
144 class ObjCForwardProtocolDeclaration;
145 class ObjCMethod;
146 class ObjCPropertyDeclaration;
147
148 } // end of namespace CPlusPlus
149
150 #endif // CPLUSPLUS_CPLUSPLUSFORWARDDECLARATIONS_H