- Timestamp:
- 11/10/09 16:50:26 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IOperatorGraph.cs
r776 r2474 24 24 using System.Text; 25 25 using System.Xml; 26 using HeuristicLab.Common; 26 27 27 28 namespace HeuristicLab.Core { … … 63 64 /// Occurs when a new operator has been added to the current instance. 64 65 /// </summary> 65 event EventHandler< OperatorEventArgs> OperatorAdded;66 event EventHandler<EventArgs<IOperator>> OperatorAdded; 66 67 /// <summary> 67 68 /// Occurs when an operator has been deleted from the current instance. 68 69 /// </summary> 69 event EventHandler< OperatorEventArgs> OperatorRemoved;70 event EventHandler<EventArgs<IOperator>> OperatorRemoved; 70 71 /// <summary> 71 72 /// Occurs when the initial operator (the starting one) has been changed.
Note: See TracChangeset
for help on using the changeset viewer.