##// END OF EJS Templates
refactoring complete, JSONParser rewritten
refactoring complete, JSONParser rewritten

File last commit:

r13:b0feb5b9ad1c promises
r180:c32688129f14 ref20160224
Show More
IProgressNotifier.cs
14 lines | 374 B | text/x-csharp | CSharpLexer
/ Implab / IProgressNotifier.cs
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;
event EventHandler<ProgressInitEventArgs> ProgressInit;
}
}