Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure.Manager/Manager.cs @ 2475

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

worked on plugin infrastructure refactoring. #799

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