blob: f151f56caf47630afa32f6633346bc9b777ed4ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Collections.Generic;
using System.Text;
using OpenGrid.Framework.Communications;
namespace OpenGrid.Framework.Communications.OGS1
{
public class GridCommsManager : CommunicationsManager
{
public GridCommsManager()
{
GridServer = new OGS1GridServices();
InterRegion = new OGSInterSimComms();
UserServer = new OGSUserServices();
}
}
}
|