CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
getParamDumper.h
Go to the documentation of this file.
1 #ifndef Utilities_StaticAnalyzers_getParamDumper_h
2 #define Utilities_StaticAnalyzers_getParamDumper_h
3 #include <clang/StaticAnalyzer/Core/BugReporter/BugType.h>
4 #include <clang/StaticAnalyzer/Core/Checker.h>
5 #include <clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h>
6 
7 
8 namespace clangcms {
9 
10 class getParamDumper : public clang::ento::Checker< clang::ento::eval::Call>
11 {
12 
13  void analyzerEval(const clang::CallExpr *CE, clang::ento::CheckerContext &C) const;
14 
15  typedef void (getParamDumper::*FnCheck)(const clang::CallExpr *, clang::ento::CheckerContext &C) const;
16 
17  public:
18 
19  bool evalCall(const clang::CallExpr *CE, clang::ento::CheckerContext &C) const;
20 
21 };
22 
23 }
24  #endif
bool evalCall(const clang::CallExpr *CE, clang::ento::CheckerContext &C) const
void analyzerEval(const clang::CallExpr *CE, clang::ento::CheckerContext &C) const
void(getParamDumper::* FnCheck)(const clang::CallExpr *, clang::ento::CheckerContext &C) const