IProgressNotifier.cs
14 lines
| 374 B
| text/x-csharp
|
CSharpLexer
/ Implab / IProgressNotifier.cs
cin
|
r12 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
namespace Implab | ||||
{ | ||||
public interface IProgressNotifier | ||||
{ | ||||
event EventHandler<ValueEventArgs<string>> MessageUpdated; | ||||
event EventHandler<ValueEventArgs<float>> ProgressUpdated; | ||||
cin
|
r13 | event EventHandler<ProgressInitEventArgs> ProgressInit; | ||
cin
|
r12 | } | ||
} | ||||