Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs @ 10239

Last change on this file since 10239 was 10239, checked in by psteiner, 10 years ago

DataPreprocessingView + Refactoring

File size: 275 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.DataPreprocessing {
7  public interface IDataGridLogic {
8
9    IEnumerable<string> GetVariableNames();
10
11    IList<IList<string>> GetAllValues();
12  }
13}
Note: See TracBrowser for help on using the repository browser.