Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:50

0001 #ifndef Utilities_StaticAnalyzers_MemberChecker_h
0002 #define Utilities_StaticAnalyzers_MemberChecker_h
0003 #include <clang/StaticAnalyzer/Core/Checker.h>
0004 #include <clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h>
0005 #include <clang/StaticAnalyzer/Core/BugReporter/BugType.h>
0006 
0007 #include "CmsException.h"
0008 #include "CmsSupport.h"
0009 
0010 namespace clangcms {
0011 
0012   class ClassChecker : public clang::ento::Checker<clang::ento::check::ASTDecl<clang::CXXRecordDecl> > {
0013   public:
0014     void checkASTDecl(const clang::CXXRecordDecl *CRD,
0015                       clang::ento::AnalysisManager &mgr,
0016                       clang::ento::BugReporter &BR) const;
0017   };
0018 
0019 }  // namespace clangcms
0020 #endif