Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6178 was 5599, checked in by ascheibe, 13 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
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.Clients.Hive {
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.