- Timestamp:
- 11/27/13 15:52:59 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10161 r10163 84 84 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 85 85 </Compile> 86 <Compile Include="Implementations\PreprocessingData.cs" /> 86 87 <Compile Include="PreprocessingDataStatisticInfo.cs" /> 87 88 <Compile Include="Interfaces\IPreprocessingDataStatisticInfo.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10159 r10163 22 22 using System.Collections.Generic; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Problems.DataAnalysis; 24 25 25 26 namespace HeuristicLab.DataPreprocessing.Interfaces { … … 43 44 int Columns { get; } 44 45 int Rows { get; } 46 47 void ExportTo(IDataAnalysisProblemData problemData); 45 48 } 46 49 }
Note: See TracChangeset
for help on using the changeset viewer.