Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //===--- AST.h - "Umbrella" header for AST library --------------*- 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 //  This file defines the interface to the AST classes.
0010 //
0011 //===----------------------------------------------------------------------===//
0012 
0013 #ifndef LLVM_CLANG_AST_AST_H
0014 #define LLVM_CLANG_AST_AST_H
0015 
0016 // This header exports all AST interfaces.
0017 #include "clang/AST/ASTContext.h"
0018 #include "clang/AST/Decl.h"
0019 #include "clang/AST/DeclCXX.h"
0020 #include "clang/AST/DeclObjC.h"
0021 #include "clang/AST/DeclTemplate.h"
0022 #include "clang/AST/Expr.h"
0023 #include "clang/AST/ExprObjC.h"
0024 #include "clang/AST/StmtVisitor.h"
0025 #include "clang/AST/Type.h"
0026 
0027 #endif