Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Clients.Hive/3.3/HiveExperiment/PluginClient.cs @ 4905

Last change on this file since 4905 was 4905, checked in by cneumuel, 13 years ago

#1233

  • added plugin management features
  • took over client-GUI from old branch
  • merged with bugfixes from old branch
  • added hive-web (for IIS)
File size: 539 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.HiveExperiment {
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.ServicePool.GetService()) {
19       
20      }
21    }
22  }
23}
Note: See TracBrowser for help on using the repository browser.