Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ExperimentManager/PluginClient.cs @ 5404

Last change on this file since 5404 was 5095, checked in by cneumuel, 14 years ago

#1233

  • fixed config merge process
  • worked on hive server test setup
File size: 512 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Services.Hive.Common.DataTransfer;
6
7namespace HeuristicLab.Clients.Hive {
8  internal class PluginClient {
9
10    private List<Plugin> availablePlugins;
11    public IEnumerable<Plugin> AvailablePlugins {
12      get {
13        return availablePlugins;
14      }
15    }
16
17    public void Load() {
18      using (var service = ServiceLocator.Instance.GetService()) {
19       
20      }
21    }
22  }
23}
Note: See TracBrowser for help on using the repository browser.