]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / llvm / tools / clang / lib / StaticAnalyzer / Checkers / ClangSACheckers.h
1 //===--- ClangSACheckers.h - Registration functions for Checkers *- 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 // Declares the registation functions for the checkers defined in
11 // libclangStaticAnalyzerCheckers.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_SA_LIB_CHECKERS_CLANGSACHECKERS_H
16 #define LLVM_CLANG_SA_LIB_CHECKERS_CLANGSACHECKERS_H
17
18 namespace clang {
19
20 namespace ento {
21 class CheckerManager;
22 class CheckerRegistry;
23
24 #define GET_CHECKERS
25 #define CHECKER(FULLNAME,CLASS,CXXFILE,HELPTEXT,GROUPINDEX,HIDDEN)    \
26   void register##CLASS(CheckerManager &mgr);
27 #include "Checkers.inc"
28 #undef CHECKER
29 #undef GET_CHECKERS
30
31 } // end ento namespace
32
33 } // end clang namespace
34
35 #endif