Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/11/09 18:25:15 (15 years ago)
Author:
gkronber
Message:

Refactored class Loader in plugin infrastructure. #799

Location:
branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces/IApplication.cs

    r2475 r2481  
    2525
    2626namespace HeuristicLab.PluginInfrastructure {
    27   internal interface IApplication {
     27  public interface IApplication {
    2828    string Name { get; }
    2929    Version Version { get; }
    30     string Description { get;}
     30    string Description { get; }
    3131    bool RestartOnErrors { get; }
    3232    void Run();
  • branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces/IPlugin.cs

    r2475 r2481  
    3232  /// The method OnLoad() is called by the framework when the plugin is loaded (application start).
    3333  /// </summary>
    34   internal interface IPlugin {
     34  public interface IPlugin {
    3535    /// <summary>
    3636    /// Gets the name of the plugin.
    3737    /// </summary>
    3838    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; }
    4343    /// <summary>
    4444    /// 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.