aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/MessagingServer/IUGAIMCore.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/MessagingServer/IUGAIMCore.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Grid/MessagingServer/IUGAIMCore.cs b/OpenSim/Grid/MessagingServer/IUGAIMCore.cs
new file mode 100644
index 0000000..5ab1166
--- /dev/null
+++ b/OpenSim/Grid/MessagingServer/IUGAIMCore.cs
@@ -0,0 +1,15 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.Framework.Servers;
5
6namespace OpenSim.Grid.MessagingServer
7{
8 public interface IUGAIMCore
9 {
10 T Get<T>();
11 void RegisterInterface<T>(T iface);
12 bool TryGet<T>(out T iface);
13 BaseHttpServer GetHttpServer();
14 }
15}