Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10244


Ignore:
Timestamp:
12/18/13 14:41:10 (10 years ago)
Author:
psteiner
Message:

Added logic classes and interfaces

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  
    7878  <ItemGroup>
    7979    <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" />
    8089    <Compile Include="Interfaces\IDataGridLogic.cs" />
     90    <Compile Include="Interfaces\ITransformationLogic.cs" />
    8191    <Compile Include="Views\DataPreprocessingView.cs">
    8292      <SubType>UserControl</SubType>
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs

    r10239 r10244  
    55
    66namespace HeuristicLab.DataPreprocessing {
    7   public interface IDataGridLogic {
    8 
    9     IEnumerable<string> GetVariableNames();
    10 
    11     IList<IList<string>> GetAllValues();
     7  public interface IStatisticsLogic {
    128  }
    139}
Note: See TracChangeset for help on using the changeset viewer.