Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6198 was 5599, checked in by ascheibe, 14 years ago

#1233

  • rename 'Slave' namespace to 'SlaveCore' (and assemblies etc) to avoid problems with 'Slave' class
  • use svcutil (OKB-style)
File size: 315 bytes
RevLine 
[5526]1using System.Collections.Generic;
[4905]2
[5095]3namespace HeuristicLab.Clients.Hive {
[4905]4  internal class PluginClient {
5
6    private List<Plugin> availablePlugins;
7    public IEnumerable<Plugin> AvailablePlugins {
8      get {
9        return availablePlugins;
10      }
11    }
12
13    public void Load() {
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.