File indexing completed on 2026-05-10 08:36:28
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef LLVM_CLANG_AST_ASTFWD_H
0015 #define LLVM_CLANG_AST_ASTFWD_H
0016
0017 namespace clang {
0018
0019 class Decl;
0020 #define DECL(DERIVED, BASE) class DERIVED##Decl;
0021 #include "clang/AST/DeclNodes.inc"
0022 class Stmt;
0023 #define STMT(DERIVED, BASE) class DERIVED;
0024 #include "clang/AST/StmtNodes.inc"
0025 class Type;
0026 #define TYPE(DERIVED, BASE) class DERIVED##Type;
0027 #include "clang/AST/TypeNodes.inc"
0028 class CXXCtorInitializer;
0029 class OMPClause;
0030 #define GEN_CLANG_CLAUSE_CLASS
0031 #define CLAUSE_CLASS(Enum, Str, Class) class Class;
0032 #include "llvm/Frontend/OpenMP/OMP.inc"
0033 class Attr;
0034 #define ATTR(A) class A##Attr;
0035 #include "clang/Basic/AttrList.inc"
0036 class ObjCProtocolLoc;
0037 class ConceptReference;
0038
0039 }
0040
0041 #endif