Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilteredPreprocessingData.cs @ 10785

Last change on this file since 10785 was 10783, checked in by mleitner, 10 years ago

Add FilteredPreprocessing data for applying and caching filter status

File size: 338 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.DataPreprocessing.Interfaces
7{
8  public interface IFilteredPreprocessingData : ITransactionalPreprocessingData
9  {
10    void SetFilter(bool[] rowFilters);
11    void PersistFilter();
12    void ResetFilter();
13   }
14}
Note: See TracBrowser for help on using the repository browser.