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_PLUGINFRONTENDACTION_H 00011 #define LLVM_CLANG_FRONTEND_PLUGINFRONTENDACTION_H 00012 00013 #include "clang/Frontend/FrontendAction.h" 00014 #include "llvm/Support/Registry.h" 00015 00016 namespace clang { 00017 00018 /// The frontend plugin registry. 00019 typedef llvm::Registry<PluginASTAction> FrontendPluginRegistry; 00020 00021 } // end namespace clang 00022 00023 #endif