1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | #ifndef LLVM_CLANG_STATICANALYZER_CORE_PATHDIAGNOSTICCONSUMERS_H |
14 | #define LLVM_CLANG_STATICANALYZER_CORE_PATHDIAGNOSTICCONSUMERS_H |
15 | |
16 | #include <string> |
17 | #include <vector> |
18 | |
19 | namespace clang { |
20 | |
21 | class AnalyzerOptions; |
22 | class Preprocessor; |
23 | |
24 | namespace ento { |
25 | |
26 | class PathDiagnosticConsumer; |
27 | typedef std::vector<PathDiagnosticConsumer*> PathDiagnosticConsumers; |
28 | |
29 | #define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATEFN)\ |
30 | void CREATEFN(AnalyzerOptions &AnalyzerOpts,\ |
31 | PathDiagnosticConsumers &C,\ |
32 | const std::string &Prefix,\ |
33 | const Preprocessor &PP); |
34 | #include "clang/StaticAnalyzer/Core/Analyses.def" |
35 | |
36 | } |
37 | } |
38 | |
39 | #endif |
40 | |