diff options
Diffstat (limited to 'clang-r344140b/include/clang/Tooling/CompilationDatabasePluginRegistry.h')
| -rw-r--r-- | clang-r344140b/include/clang/Tooling/CompilationDatabasePluginRegistry.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/clang-r344140b/include/clang/Tooling/CompilationDatabasePluginRegistry.h b/clang-r344140b/include/clang/Tooling/CompilationDatabasePluginRegistry.h new file mode 100644 index 00000000..051a08e2 --- /dev/null +++ b/clang-r344140b/include/clang/Tooling/CompilationDatabasePluginRegistry.h @@ -0,0 +1,25 @@ +//===- CompilationDatabasePluginRegistry.h ----------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_TOOLING_COMPILATIONDATABASEPLUGINREGISTRY_H +#define LLVM_CLANG_TOOLING_COMPILATIONDATABASEPLUGINREGISTRY_H + +#include "clang/Tooling/CompilationDatabase.h" +#include "llvm/Support/Registry.h" + +namespace clang { +namespace tooling { + +using CompilationDatabasePluginRegistry = + llvm::Registry<CompilationDatabasePlugin>; + +} // namespace tooling +} // namespace clang + +#endif // LLVM_CLANG_TOOLING_COMPILATIONDATABASEPLUGINREGISTRY_H |
