OpenSimMirror/Common/OpenGrid.Framework.Communic.../GridCommsManager.cs

19 lines
588 B
C#
Raw Normal View History

2007-06-24 18:40:02 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Types;
2007-06-24 18:40:02 +00:00
using OpenGrid.Framework.Communications;
namespace OpenGrid.Framework.Communications.OGS1
{
public class GridCommsManager : CommunicationsManager
{
private OGS1GridServices gridInterComms = new OGS1GridServices();
public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo)
2007-06-24 18:40:02 +00:00
{
GridServer = gridInterComms;
InterRegion = gridInterComms;
2007-06-24 18:40:02 +00:00
UserServer = new OGSUserServices();
}
}
}