Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/DataSources/OneDimensional/RawDataSource.cs @ 13467

Last change on this file since 13467 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 460 bytes
Line 
1using System.Collections.Generic;
2using System.Windows;
3
4namespace 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.