don't use #pragma mark, it isn't portable.
[clang.git] / include / clang / StaticAnalyzer / EntoSA / FrontendActions.h
blobe3867a2a24780034c948905d41ad316f314b0917
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_GR_FRONTENDACTIONS_H
11 #define LLVM_CLANG_GR_FRONTENDACTIONS_H
13 #include "clang/Frontend/FrontendAction.h"
15 namespace clang {
17 namespace ento {
19 //===----------------------------------------------------------------------===//
20 // AST Consumer Actions
21 //===----------------------------------------------------------------------===//
23 class AnalysisAction : public ASTFrontendAction {
24 protected:
25 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
26 llvm::StringRef InFile);
29 } // end GR namespace
31 } // end namespace clang
33 #endif