2007-06-09 21:04:13 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using libsecondlife;
|
|
|
|
using OpenSim.Framework;
|
|
|
|
using OpenSim.Framework.Interfaces;
|
|
|
|
using OpenSim.Framework.Types;
|
|
|
|
|
|
|
|
namespace OpenGrid.Framework.Communications
|
|
|
|
{
|
|
|
|
public class RegionServerCommsLocal : RegionServerCommsManager
|
|
|
|
{
|
2007-06-11 09:53:34 +00:00
|
|
|
public LocalBackEndServices SandManager = new LocalBackEndServices();
|
2007-06-09 21:04:13 +00:00
|
|
|
public RegionServerCommsLocal()
|
|
|
|
{
|
2007-06-10 19:08:51 +00:00
|
|
|
UserServer = new UserServer.UserCommsManagerLocal(); //Local User Server
|
|
|
|
GridServer = new GridServer.GridCommsManagerLocal(SandManager); //Locl Grid Server
|
|
|
|
InterSims = new InterSimsCommsLocal(SandManager);
|
2007-06-10 12:01:09 +00:00
|
|
|
}
|
|
|
|
|
2007-06-10 19:08:51 +00:00
|
|
|
|
2007-06-09 21:04:13 +00:00
|
|
|
}
|
|
|
|
}
|