clang API Documentation
00001 //===--- AST.h - "Umbrella" header for AST library --------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file defines the interface to the AST classes. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_CLANG_AST_AST_H 00015 #define LLVM_CLANG_AST_AST_H 00016 00017 // This header exports all AST interfaces. 00018 #include "clang/AST/ASTContext.h" 00019 #include "clang/AST/Decl.h" 00020 #include "clang/AST/DeclCXX.h" 00021 #include "clang/AST/DeclObjC.h" 00022 #include "clang/AST/DeclTemplate.h" 00023 #include "clang/AST/Expr.h" 00024 #include "clang/AST/ExprObjC.h" 00025 #include "clang/AST/StmtVisitor.h" 00026 #include "clang/AST/Type.h" 00027 00028 #endif