##// END OF EJS Templates
fixes
fixes

File last commit:

r138:f75cfa58e3d4 v2
r140:f973c5df9972 v2
Show More
ICancellable.cs
11 lines | 226 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ICancellable {
void Cancel();
void Cancel(Exception reason);
}
}