Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/OperationChangedEventArgs.cs @ 4891

Last change on this file since 4891 was 4871, checked in by epitzer, 14 years ago

Refactoring and modularization of DebugEngine (#47)

File size: 391 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.DebugEngine {
8  public class OperationChangedEventArgs : EventArgs {
9    public IOperation NewOperation { get; protected set; }
10    public OperationChangedEventArgs(IOperation newOperation) {
11      NewOperation = newOperation;
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.