Last change
on this file since 4945 was
4871,
checked in by epitzer, 14 years ago
|
Refactoring and modularization of DebugEngine (#47)
|
File size:
391 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 |
|
---|
7 | namespace 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.