[analyzer] Refactoring: include/clang/Checker -> include/clang/GR
[clang.git] / include / clang / GR / FrontendActions.h
blob1c0bbb78ba8c74243f12ab6101d0785037d111c0
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 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_CLANG_CHECKER_FRONTENDACTIONS_H
11 #define LLVM_CLANG_CHECKER_FRONTENDACTIONS_H
13 #include "clang/Frontend/FrontendAction.h"
15 namespace clang {
17 //===----------------------------------------------------------------------===//
18 // AST Consumer Actions
19 //===----------------------------------------------------------------------===//
21 class AnalysisAction : public ASTFrontendAction {
22 protected:
23 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
24 llvm::StringRef InFile);
27 } // end namespace clang
29 #endif