##// END OF EJS Templates
refactoring, sync
refactoring, sync

File last commit:

r12:eb418ba8275b promises
r20:1c3b3d518480 promises
Show More
ITaskController.cs
12 lines | 238 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ITaskController: IProgressHandler {
bool Cancelled {
get;
}
}
}