clang  3.7.0
ASTConsumer.cpp
Go to the documentation of this file.
1 //===--- ASTConsumer.cpp - Abstract interface for reading ASTs --*- 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 // This file defines the ASTConsumer class.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/AST/ASTConsumer.h"
15 #include "llvm/Bitcode/BitstreamReader.h"
16 #include "clang/AST/Decl.h"
17 #include "clang/AST/DeclGroup.h"
18 using namespace clang;
19 
21  return true;
22 }
23 
26 }
27 
29 
32 }
virtual void HandleInterestingDecl(DeclGroupRef D)
Definition: ASTConsumer.cpp:24
Describes a module import declaration, which makes the contents of the named module visible in the cu...
Definition: Decl.h:3704
virtual void HandleImplicitImportDecl(ImportDecl *D)
Handle an ImportDecl that was implicitly created due to an inclusion directive. The default implement...
Definition: ASTConsumer.cpp:30
virtual void HandleTopLevelDeclInObjCContainer(DeclGroupRef D)
Handle the specified top-level declaration that occurred inside and ObjC container. The default implementation ignored them.
Definition: ASTConsumer.cpp:28
virtual bool HandleTopLevelDecl(DeclGroupRef D)
Definition: ASTConsumer.cpp:20