]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / tools / clang / include / clang / AST / ASTFwd.h
1 //===--- ASTFwd.h ----------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===--------------------------------------------------------------===//
9 ///
10 /// \file
11 /// \brief Forward declaration of all AST node types.
12 ///
13 //===-------------------------------------------------------------===//
14
15 namespace clang {
16
17 class Decl;
18 #define DECL(DERIVED, BASE) class DERIVED##Decl;
19 #include "clang/AST/DeclNodes.inc"
20 class Stmt;
21 #define STMT(DERIVED, BASE) class DERIVED;
22 #include "clang/AST/StmtNodes.inc"
23 class Type;
24 #define TYPE(DERIVED, BASE) class DERIVED##Type;
25 #include "clang/AST/TypeNodes.def"
26 class CXXCtorInitializer;
27
28 } // end namespace clang