aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
blob: 0784ffa8cc906b5b02aa099fda3dc84e167086d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();
        }
    }
}