Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:28

0001 //===--- ASTFwd.h ----------------------------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===--------------------------------------------------------------===//
0008 ///
0009 /// \file
0010 /// Forward declaration of all AST node types.
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 } // end namespace clang
0040 
0041 #endif