Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using System.Windows;
|
---|
3 |
|
---|
4 | namespace Microsoft.Research.DynamicDataDisplay.DataSources
|
---|
5 | {
|
---|
6 | public sealed class RawDataSource : EnumerableDataSourceBase<Point> {
|
---|
7 | public RawDataSource(params Point[] data) : base(data) { }
|
---|
8 | public RawDataSource(IEnumerable<Point> data) : base(data) { }
|
---|
9 |
|
---|
10 | public override IPointEnumerator GetEnumerator(DependencyObject context) {
|
---|
11 | return new RawPointEnumerator(this);
|
---|
12 | }
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.