view Implab/ICancellable.cs @ 146:e03ccec4a08d v2

minor changes
author cin
date Mon, 09 Mar 2015 17:21:20 +0300
parents 0fa293bb1351
children
line wrap: on
line source

using System;

namespace Implab {
    public interface ICancellable {
        void Cancel();
        void Cancel(Exception reason);
    }
}