comparison Implab/ITaskController.cs @ 25:9bf5b23650c9

refactoring
author cin
date Thu, 06 Feb 2014 01:08:59 +0400
parents eb418ba8275b
children 706fccb85524
comparison
equal deleted inserted replaced
24:ee04e1fa78da 25:9bf5b23650c9
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.Linq; 3 using System.Linq;
4 using System.Text; 4 using System.Text;
5 5
6 namespace Implab { 6 namespace Implab {
7 public interface ITaskController: IProgressHandler { 7 public interface ITaskController: IProgressHandler, ICancellable {
8 bool Cancelled { 8 bool IsCancelled {
9 get; 9 get;
10 } 10 }
11
12 event EventHandler Cancelled;
11 } 13 }
12 } 14 }