diff options
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs new file mode 100644 index 0000000..0743cbf --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using System; | ||
2 | using System.Collections; | ||
3 | using System.Collections.Generic; | ||
4 | using System.Text; | ||
5 | using libsecondlife; | ||
6 | using OpenSim.Framework; | ||
7 | using OpenSim.Framework.Interfaces; | ||
8 | using OpenSim.Framework.Types; | ||
9 | |||
10 | namespace OpenGrid.Framework.Communications | ||
11 | { | ||
12 | public class RegionServerCommsLocal : RegionServerCommsManager | ||
13 | { | ||
14 | public RegionServerCommsLocal() | ||
15 | { | ||
16 | userServer = new UserServer.UserCommsManagerLocal(); //Local User Server | ||
17 | gridServer = new GridServer.GridCommsManagerLocal(); //Locl Grid Server | ||
18 | } | ||
19 | } | ||
20 | } | ||