clang API Documentation
00001 //===--- CompilationDatabasePluginRegistry.h - ------------------*- 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_TOOLING_COMPILATIONDATABASEPLUGINREGISTRY_H 00011 #define LLVM_CLANG_TOOLING_COMPILATIONDATABASEPLUGINREGISTRY_H 00012 00013 #include "clang/Tooling/CompilationDatabase.h" 00014 #include "llvm/Support/Registry.h" 00015 00016 namespace clang { 00017 namespace tooling { 00018 00019 class CompilationDatabasePlugin; 00020 00021 typedef llvm::Registry<CompilationDatabasePlugin> 00022 CompilationDatabasePluginRegistry; 00023 00024 } // end namespace tooling 00025 } // end namespace clang 00026 00027 #endif