Last change
on this file since 6168 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
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 |
|
---|
3 | namespace 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.