using System;
namespace ICD.Common.Utils
{
///
/// Provides features for managing the disposed state of an IDisposable.
///
public interface IStateDisposable : IDisposable
{
///
/// Returns true if this instance has been disposed.
///
bool IsDisposed { get; }
}
}