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

18 lines
529 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
{
public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo)
2007-06-24 18:40:02 +00:00
{
GridServer = new OGS1GridServices();
InterRegion = new OGSInterSimComms();
UserServer = new OGSUserServices();
}
}
}