aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/Framework
diff options
context:
space:
mode:
authorMW2009-02-24 18:06:06 +0000
committerMW2009-02-24 18:06:06 +0000
commit8645fa9215575a42e2f6a21b3d2284f8c19e4b27 (patch)
tree025dc78641d56e9cac08d4bd708eea5be3818cc8 /OpenSim/Grid/Framework
parentMore refactoring of the Grid/user/messaging servers. (diff)
downloadopensim-SC_OLD-8645fa9215575a42e2f6a21b3d2284f8c19e4b27.zip
opensim-SC_OLD-8645fa9215575a42e2f6a21b3d2284f8c19e4b27.tar.gz
opensim-SC_OLD-8645fa9215575a42e2f6a21b3d2284f8c19e4b27.tar.bz2
opensim-SC_OLD-8645fa9215575a42e2f6a21b3d2284f8c19e4b27.tar.xz
Removed the additions from the last revision for the "ShowHelp" delegate handling, as it seems that system isn't in use anymore.
Diffstat (limited to 'OpenSim/Grid/Framework')
-rw-r--r--OpenSim/Grid/Framework/IUGAIMCore.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/OpenSim/Grid/Framework/IUGAIMCore.cs b/OpenSim/Grid/Framework/IUGAIMCore.cs
index 77245ce..a7df0d4 100644
--- a/OpenSim/Grid/Framework/IUGAIMCore.cs
+++ b/OpenSim/Grid/Framework/IUGAIMCore.cs
@@ -30,14 +30,11 @@ using OpenSim.Framework.Servers;
30 30
31namespace OpenSim.Grid.Framework 31namespace OpenSim.Grid.Framework
32{ 32{
33 public delegate void ShowHelpDelegate(string[] helpArgs);
34
35 public interface IUGAIMCore 33 public interface IUGAIMCore
36 { 34 {
37 T Get<T>(); 35 T Get<T>();
38 void RegisterInterface<T>(T iface); 36 void RegisterInterface<T>(T iface);
39 bool TryGet<T>(out T iface); 37 bool TryGet<T>(out T iface);
40 BaseHttpServer GetHttpServer(); 38 BaseHttpServer GetHttpServer();
41 void RegisterConsoleHelpDelegate(ShowHelpDelegate showHelp);
42 } 39 }
43} 40}