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
|
Rev | Line | |
---|
[5526] | 1 | using System.Collections.Generic;
|
---|
[4905] | 2 |
|
---|
[5095] | 3 | namespace 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.