aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridServerBase.cs
diff options
context:
space:
mode:
authorMW2009-02-24 17:57:26 +0000
committerMW2009-02-24 17:57:26 +0000
commit1e2835a10c104b049c5552c64f77309b88f5650e (patch)
treea81f400318476e3f34392eeea5f09b6e34fcc3ee /OpenSim/Grid/GridServer/GridServerBase.cs
parentSame treatment for the MessagingServer... added OpenSim.Grid.MessagingServer.... (diff)
downloadopensim-SC_OLD-1e2835a10c104b049c5552c64f77309b88f5650e.zip
opensim-SC_OLD-1e2835a10c104b049c5552c64f77309b88f5650e.tar.gz
opensim-SC_OLD-1e2835a10c104b049c5552c64f77309b88f5650e.tar.bz2
opensim-SC_OLD-1e2835a10c104b049c5552c64f77309b88f5650e.tar.xz
More refactoring of the Grid/user/messaging servers.
Diffstat (limited to 'OpenSim/Grid/GridServer/GridServerBase.cs')
-rw-r--r--OpenSim/Grid/GridServer/GridServerBase.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Grid/GridServer/GridServerBase.cs b/OpenSim/Grid/GridServer/GridServerBase.cs
index 3313591..70dd8a6 100644
--- a/OpenSim/Grid/GridServer/GridServerBase.cs
+++ b/OpenSim/Grid/GridServer/GridServerBase.cs
@@ -217,7 +217,7 @@ namespace OpenSim.Grid.GridServer
217 } 217 }
218 218
219 #region IUGAIMCore 219 #region IUGAIMCore
220 private readonly Dictionary<Type, object> m_moduleInterfaces = new Dictionary<Type, object>(); 220 protected Dictionary<Type, object> m_moduleInterfaces = new Dictionary<Type, object>();
221 221
222 /// <summary> 222 /// <summary>
223 /// Register an Module interface. 223 /// Register an Module interface.
@@ -255,6 +255,11 @@ namespace OpenSim.Grid.GridServer
255 { 255 {
256 return m_httpServer; 256 return m_httpServer;
257 } 257 }
258
259 public void RegisterConsoleHelpDelegate(ShowHelpDelegate showHelp)
260 {
261
262 }
258 #endregion 263 #endregion
259 } 264 }
260} 265}