FrontendActions.h revision 218887
1//===-- FrontendActions.h - Useful Frontend Actions -------------*- 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#ifndef LLVM_CLANG_GR_FRONTENDACTIONS_H
11#define LLVM_CLANG_GR_FRONTENDACTIONS_H
12
13#include "clang/Frontend/FrontendAction.h"
14
15namespace clang {
16
17namespace ento {
18
19//===----------------------------------------------------------------------===//
20// AST Consumer Actions
21//===----------------------------------------------------------------------===//
22
23class AnalysisAction : public ASTFrontendAction {
24protected:
25  virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
26                                         llvm::StringRef InFile);
27};
28
29} // end GR namespace
30
31} // end namespace clang
32
33#endif
34