]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckerProvider.h
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.git] / contrib / llvm / tools / clang / lib / StaticAnalyzer / Checkers / ClangSACheckerProvider.h
1 //===--- ClangSACheckerProvider.h - Clang SA Checkers Provider --*- 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 // Defines the entry point for creating the provider for the checkers defined
11 // in libclangStaticAnalyzerCheckers.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_SA_CHECKERS_CLANGSACHECKERPROVIDER_H
16 #define LLVM_CLANG_SA_CHECKERS_CLANGSACHECKERPROVIDER_H
17
18 namespace clang {
19
20 namespace ento {
21   class CheckerProvider;
22
23 CheckerProvider *createClangSACheckerProvider();
24
25 } // end ento namespace
26
27 } // end clang namespace
28
29 #endif