- Timestamp:
- 03/05/14 17:27:27 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IHistogramLogic.cs
r10539 r10552 21 21 22 22 23 using System.Collections.Generic; 24 using HeuristicLab.Analysis; 25 23 26 namespace HeuristicLab.DataPreprocessing { 24 27 public interface IHistogramLogic { 28 void RemoveVariable(string name); 29 30 void AddVariable(string name); 31 32 IEnumerable<object> GetVariableNames(); 33 34 DataTable GetDataTable(); 35 36 bool VariableIsDisplayed(string name); 25 37 } 26 38 }
Note: See TracChangeset
for help on using the changeset viewer.