clang API Documentation
00001 //===--- ClangCheckers.h - Provides builtin checkers ------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef LLVM_CLANG_STATICANALYZER_CHECKERS_CLANGCHECKERS_H 00011 #define LLVM_CLANG_STATICANALYZER_CHECKERS_CLANGCHECKERS_H 00012 00013 namespace clang { 00014 namespace ento { 00015 class CheckerRegistry; 00016 00017 void registerBuiltinCheckers(CheckerRegistry ®istry); 00018 00019 } // end namespace ento 00020 } // end namespace clang 00021 00022 #endif