Changeset 10162
- Timestamp:
- 11/27/13 15:31:25 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingDataStatisticInfo.cs
r10161 r10162 2 2 using System; 3 3 namespace HeuristicLab.DataPreprocessing { 4 public interface I DatasetStatisticInfo {4 public interface IPreprocessingDataStatisticInfo { 5 5 6 6 int GetColumnCount(); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/PreprocessingDataStatisticInfo.cs
r10161 r10162 3 3 4 4 namespace HeuristicLab.DataPreprocessing { 5 class DatasetStatisticInfo : IDatasetStatisticInfo {5 class PreprocessingDataStatisticInfo : IPreprocessingDataStatisticInfo { 6 6 7 7 private IPreprocessingData preprocessingData; 8 8 9 public DatasetStatisticInfo(IPreprocessingData theDataSet) {9 public PreprocessingDataStatisticInfo(IPreprocessingData theDataSet) { 10 10 preprocessingData = theDataSet; 11 11 }
Note: See TracChangeset
for help on using the changeset viewer.