Move EVER MORE stuff over to LLVMContext.
[oota-llvm.git] / include / llvm / Support / PluginLoader.h
index 48f8a7d8dc21c976c303ab548f3ba072374f9e48..bdbb134b28ebba5066cd7b4cf5bed255dc6d36d4 100644 (file)
@@ -1,10 +1,10 @@
 //===-- llvm/Support/PluginLoader.h - Plugin Loader for Tools ---*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
 //===----------------------------------------------------------------------===//
 //
 // A tool can #include this file to get a -load option that allows the user to
@@ -22,6 +22,8 @@
 namespace llvm {
   struct PluginLoader {
     void operator=(const std::string &Filename);
+    static unsigned getNumPlugins();
+    static std::string& getPlugin(unsigned num);
   };
 
 #ifndef DONT_GET_PLUGIN_LOADER_OPTION