IProgressNotifier.cs
14 lines
| 374 B
| text/x-csharp
|
CSharpLexer
/ Implab / IProgressNotifier.cs
|
|
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; | ||||
|
|
r13 | event EventHandler<ProgressInitEventArgs> ProgressInit; | ||
|
|
r12 | } | ||
| } | ||||
