clang API Documentation
00001 //===-- FrontendAction.h - Pluggable Frontend Action Interface --*- 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_FRONTEND_FRONTENDPLUGINREGISTRY_H 00011 #define LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H 00012 00013 #include "clang/Frontend/FrontendAction.h" 00014 #include "llvm/Support/Registry.h" 00015 00016 // Instantiated in FrontendAction.cpp. 00017 extern template class llvm::Registry<clang::PluginASTAction>; 00018 00019 namespace clang { 00020 00021 /// The frontend plugin registry. 00022 typedef llvm::Registry<PluginASTAction> FrontendPluginRegistry; 00023 00024 } // end namespace clang 00025 00026 #endif