Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/10/09 16:50:26 (15 years ago)
Author:
swagner
Message:

Implemented generic EventArgs (#796)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/Interfaces/IOperatorGraph.cs

    r776 r2474  
    2424using System.Text;
    2525using System.Xml;
     26using HeuristicLab.Common;
    2627
    2728namespace HeuristicLab.Core {
     
    6364    /// Occurs when a new operator has been added to the current instance.
    6465    /// </summary>
    65     event EventHandler<OperatorEventArgs> OperatorAdded;
     66    event EventHandler<EventArgs<IOperator>> OperatorAdded;
    6667    /// <summary>
    6768    /// Occurs when an operator has been deleted from the current instance.
    6869    /// </summary>
    69     event EventHandler<OperatorEventArgs> OperatorRemoved;
     70    event EventHandler<EventArgs<IOperator>> OperatorRemoved;
    7071    /// <summary>
    7172    /// Occurs when the initial operator (the starting one) has been changed.
Note: See TracChangeset for help on using the changeset viewer.