view Implab/IProgressNotifier.cs @ 35:2880242f987a diagnostics

initial log capabilities
author cin
date Mon, 14 Apr 2014 18:25:26 +0400
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;
    }
}