diff options
author | BlueWall | 2012-10-19 07:38:36 -0400 |
---|---|---|
committer | BlueWall | 2012-10-19 07:38:36 -0400 |
commit | 99bb6c930479fedee4e55a662fa715702f6110b7 (patch) | |
tree | d532dc4d9cec78db47b15fb9ba301ca0d6ec1d47 /OpenSim/Server/Base/CommandManager.cs | |
parent | Add logging to help track sequence of events (diff) | |
download | opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.zip opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.tar.gz opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.tar.bz2 opensim-SC_OLD-99bb6c930479fedee4e55a662fa715702f6110b7.tar.xz |
Move PluginManager
Move PluginManager out to OpenSimFramework for general use
Diffstat (limited to 'OpenSim/Server/Base/CommandManager.cs')
-rw-r--r-- | OpenSim/Server/Base/CommandManager.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Server/Base/CommandManager.cs b/OpenSim/Server/Base/CommandManager.cs index 45652b3..88aac00 100644 --- a/OpenSim/Server/Base/CommandManager.cs +++ b/OpenSim/Server/Base/CommandManager.cs | |||
@@ -33,15 +33,21 @@ using System.Collections; | |||
33 | using System.Collections.Generic; | 33 | using System.Collections.Generic; |
34 | using System.Collections.ObjectModel; | 34 | using System.Collections.ObjectModel; |
35 | using Mono.Addins; | 35 | using Mono.Addins; |
36 | using Mono.Addins.Setup; | 36 | // using Mono.Addins.Setup; |
37 | using Mono.Addins.Description; | 37 | using Mono.Addins.Description; |
38 | using OpenSim.Framework; | 38 | using OpenSim.Framework; |
39 | 39 | ||
40 | namespace OpenSim.Server.Base | 40 | namespace OpenSim.Server.Base |
41 | { | 41 | { |
42 | /// <summary> | ||
43 | /// Command manager - | ||
44 | /// Wrapper for OpenSim.Framework.PluginManager to allow | ||
45 | /// us to add commands to the console to perform operations | ||
46 | /// on our repos and plugins | ||
47 | /// </summary> | ||
42 | public class CommandManager | 48 | public class CommandManager |
43 | { | 49 | { |
44 | protected AddinRegistry PluginRegistry; | 50 | public AddinRegistry PluginRegistry; |
45 | protected PluginManager PluginManager; | 51 | protected PluginManager PluginManager; |
46 | 52 | ||
47 | public CommandManager(AddinRegistry registry) | 53 | public CommandManager(AddinRegistry registry) |