2007-06-09 21:04:13 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using OpenSim.Framework;
|
|
|
|
using OpenSim.Framework.Types;
|
|
|
|
|
|
|
|
namespace OpenGrid.Framework.Communications.GridServer
|
|
|
|
{
|
|
|
|
public class GridCommsManagerOGS : GridCommsManagerBase
|
|
|
|
{
|
|
|
|
public GridCommsManagerOGS()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-06-10 18:51:45 +00:00
|
|
|
public override RegionCommsHostBase RegisterRegion(RegionInfo regionInfo)
|
2007-06-09 21:04:13 +00:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override List<RegionInfo> RequestNeighbours(RegionInfo regionInfo)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|