Last change
on this file since 2507 was
2481,
checked in by gkronber, 15 years ago
|
Refactored class Loader in plugin infrastructure. #799
|
File size:
622 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Update.Client {
|
---|
7 | public class Manager {
|
---|
8 | public void InstallPlugin(string name) {
|
---|
9 | throw new NotImplementedException();
|
---|
10 | }
|
---|
11 |
|
---|
12 | public void RemovePlugin(string name) {
|
---|
13 | throw new NotImplementedException();
|
---|
14 | }
|
---|
15 |
|
---|
16 | public IEnumerable<PluginDescription> InstalledPlugins {
|
---|
17 | get {
|
---|
18 | throw new NotImplementedException();
|
---|
19 | }
|
---|
20 | }
|
---|
21 |
|
---|
22 | public PluginDescription GetPluginDescription(string name) {
|
---|
23 | throw new NotImplementedException();
|
---|
24 | }
|
---|
25 | }
|
---|
26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.