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 30