Move PluginManager

Move PluginManager out to OpenSimFramework for general use
This commit is contained in:
BlueWall
2012-10-19 07:38:36 -04:00
parent c8393dd0be
commit 99bb6c9304
5 changed files with 25 additions and 12 deletions

View File

@@ -33,15 +33,21 @@ using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Mono.Addins;
using Mono.Addins.Setup;
// using Mono.Addins.Setup;
using Mono.Addins.Description;
using OpenSim.Framework;
namespace OpenSim.Server.Base
{
/// <summary>
/// Command manager -
/// Wrapper for OpenSim.Framework.PluginManager to allow
/// us to add commands to the console to perform operations
/// on our repos and plugins
/// </summary>
public class CommandManager
{
protected AddinRegistry PluginRegistry;
public AddinRegistry PluginRegistry;
protected PluginManager PluginManager;
public CommandManager(AddinRegistry registry)