view Implab/IComponentContainer.cs @ 121:62d2f1e98c4e v2

working version of AsyncQueue and batch operations tests
author cin
date Mon, 12 Jan 2015 18:19:41 +0300
parents dc4942d09e74
children
line wrap: on
line source

using System;

namespace Implab {
    public interface IComponentContainer {
        void Add(IDisposable component);
    }
}