##// END OF EJS Templates
refactoring, interactive tarce log almost complete
refactoring, interactive tarce log almost complete

File last commit:

r25:9bf5b23650c9 default
r47:b181f7bcb259 interactive logger
Show More
ITaskController.cs
14 lines | 295 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ITaskController: IProgressHandler, ICancellable {
bool IsCancelled {
get;
}
event EventHandler Cancelled;
}
}