- Timestamp:
- 06/11/14 15:25:24 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/Utils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/Utils/FindPreprocessingItemsIterator.cs
r10873 r10998 26 26 namespace HeuristicLab.DataPreprocessing.Views { 27 27 class FindPreprocessingItemsIterator : IFindPreprocessingItemsIterator { 28 28 29 private IDictionary<int, IList<int>> items; 29 30 private Tuple<int, int> currentCell; … … 31 32 public FindPreprocessingItemsIterator(IDictionary<int, IList<int>> items) { 32 33 this.items = items; 33 Reset(); 34 Reset(); 34 35 } 35 36 36 37 37 public void SetStartCell(int columnIndex, int rowIndex) { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/Utils/IFindPreprocessingItemsIterator.cs
r10852 r10998 27 27 bool MoveNext(); 28 28 void Reset(); 29 void SetStartCell(int columnIndex, int rowIndex); 29 void SetStartCell(int columnIndex, int rowIndex); 30 30 } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.