Mercurial > pub > ImplabNet
annotate Implab/IProgressNotifier.cs @ 74:c4140283575c v2
minor fixes
| author | cin | 
|---|---|
| date | Mon, 08 Sep 2014 17:40:46 +0400 | 
| parents | b0feb5b9ad1c | 
| children | 
| rev | line source | 
|---|---|
| 12 | 1 using System; | 
| 2 using System.Collections.Generic; | |
| 3 using System.Linq; | |
| 4 using System.Text; | |
| 5 | |
| 6 namespace Implab | |
| 7 { | |
| 8 public interface IProgressNotifier | |
| 9 { | |
| 10 event EventHandler<ValueEventArgs<string>> MessageUpdated; | |
| 11 event EventHandler<ValueEventArgs<float>> ProgressUpdated; | |
| 13 | 12 event EventHandler<ProgressInitEventArgs> ProgressInit; | 
| 12 | 13 } | 
| 14 } | 
