Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/10 19:01:27 (14 years ago)
Author:
gkronber
Message:

Fixed relevant warnings in the plugin infrastructure (didn't fix warnings about XML comments of members that will be removed soon). #915 (Remove warnings from HL 3.3 solution)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces/IApplication.cs

    r2790 r3092  
    2525
    2626namespace HeuristicLab.PluginInfrastructure {
     27  /// <summary>
     28  /// Interface that must be implemented by HeuristicLab applications.
     29  /// </summary>
    2730  public interface IApplication {
     31    /// <summary>
     32    /// Gets the name of the application.
     33    /// </summary>
    2834    string Name { get; }
     35    /// <summary>
     36    /// Gets the description of the application.
     37    /// </summary>
    2938    string Description { get; }
     39    /// <summary>
     40    /// Main entry point for the application.
     41    /// </summary>
    3042    void Run();
    3143  }
Note: See TracChangeset for help on using the changeset viewer.