Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.Update.Client/Manager.cs @ 2481

Last change on this file since 2481 was 2481, checked in by gkronber, 14 years ago

Refactored class Loader in plugin infrastructure. #799

File size: 622 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.