- Timestamp:
- 12/18/13 14:41:10 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 9 added
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10241 r10244 78 78 <ItemGroup> 79 79 <Compile Include="Implementations\DataGridLogic.cs" /> 80 <Compile Include="Implementations\FilterLogic.cs" /> 81 <Compile Include="Implementations\HistogramLogic.cs" /> 82 <Compile Include="Implementations\LineChartLogic.cs" /> 83 <Compile Include="Implementations\StatisticsLogic.cs" /> 84 <Compile Include="Implementations\TransformationLogic.cs" /> 85 <Compile Include="Interfaces\IFilterLogic.cs" /> 86 <Compile Include="Interfaces\IHistogramLogic.cs" /> 87 <Compile Include="Interfaces\ILineChartLogic.cs" /> 88 <Compile Include="Interfaces\IStatisticsLogic.cs" /> 80 89 <Compile Include="Interfaces\IDataGridLogic.cs" /> 90 <Compile Include="Interfaces\ITransformationLogic.cs" /> 81 91 <Compile Include="Views\DataPreprocessingView.cs"> 82 92 <SubType>UserControl</SubType> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs
r10239 r10244 5 5 6 6 namespace HeuristicLab.DataPreprocessing { 7 public interface IDataGridLogic { 8 9 IEnumerable<string> GetVariableNames(); 10 11 IList<IList<string>> GetAllValues(); 7 public interface IStatisticsLogic { 12 8 } 13 9 }
Note: See TracChangeset
for help on using the changeset viewer.