view Implab/IProgressNotifier.cs @ 212:a01d9df88d74 v2

Added class Trace<T> to manage channels for individual classes, if SomeClass uses Trace<SomeClass> it sould be marked with TraceSourceAttribute
author cin
date Tue, 04 Apr 2017 12:04:05 +0300
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;
    }
}