using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Collections;
namespace HeuristicLab.BackgroundProcessing {
///
/// Combines IEnumerable>T<"/>
and INotifyCollectionChanged
into
/// a single interface.
///
///
public interface IObservableEnumerable : IEnumerable, INotifyCollectionChanged { }
}