view Implab/IProgressNotifier.cs @ 114:3fbc6eb93eb1 v2

minor changes
author cin
date Sun, 14 Dec 2014 22:39:13 +0100
parents b0feb5b9ad1c
children
line wrap: on
line source

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;
    }
}