Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/IAggregator.cs @ 1325

Last change on this file since 1325 was 1325, checked in by cbahner, 15 years ago

#519 first aggregators: min, max, avg single and avg multiple line

File size: 267 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Visualization {
7  public interface IAggregator : IDataRow {
8    void AddWatch(IDataRow dataRow);
9    void RemoveWatch(IDataRow dataRow);
10  }
11}
Note: See TracBrowser for help on using the repository browser.