Changeset 2481 for branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces
- Timestamp:
- 11/11/09 18:25:15 (15 years ago)
- Location:
- branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces/IApplication.cs
r2475 r2481 25 25 26 26 namespace HeuristicLab.PluginInfrastructure { 27 internalinterface IApplication {27 public interface IApplication { 28 28 string Name { get; } 29 29 Version Version { get; } 30 string Description { get; }30 string Description { get; } 31 31 bool RestartOnErrors { get; } 32 32 void Run(); -
branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces/IPlugin.cs
r2475 r2481 32 32 /// The method OnLoad() is called by the framework when the plugin is loaded (application start). 33 33 /// </summary> 34 internalinterface IPlugin {34 public interface IPlugin { 35 35 /// <summary> 36 36 /// Gets the name of the plugin. 37 37 /// </summary> 38 38 string Name { get; } 39 /// <summary>40 /// Gets the version of the plugin.41 /// </summary>42 Version Version { get; }39 ///// <summary> 40 ///// Gets the version of the plugin. 41 ///// </summary> 42 //Version Version { get; } 43 43 /// <summary> 44 44 /// Gets all file names that are bundled with this plugin including all assembly files (*.dll)
Note: See TracChangeset
for help on using the changeset viewer.