view Implab/IComponentContainer.cs @ 96:daffa72a1cec v2

Added the chaining method to the non-generic IPromise
author cin
date Thu, 30 Oct 2014 10:06:16 +0300
parents dc4942d09e74
children
line wrap: on
line source

using System;

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