diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/MessagingServer/IUGAIMCore.cs | 15 |
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Framework.Servers; | ||
5 | |||
6 | namespace 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 | } | ||