Last change
on this file since 2426 was
2410,
checked in by epitzer, 15 years ago
|
make CancelAll asynchronous, add support for several worker monitors. (#769)
|
File size:
465 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Collections.Specialized;
|
---|
4 | using System.Collections;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.BackgroundProcessing {
|
---|
7 | /// <summary>
|
---|
8 | /// Combines <code>IEnumerable>T<"/></code> and <code>INotifyCollectionChanged</code> into
|
---|
9 | /// a single interface.
|
---|
10 | /// </summary>
|
---|
11 | /// <typeparam name="T"></typeparam>
|
---|
12 | public interface IObservableEnumerable<T> : IEnumerable<T>, INotifyCollectionChanged { }
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.