- Timestamp:
- 03/05/14 22:08:10 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10552 r10557 100 100 <Compile Include="Interfaces\ITransformationLogic.cs" /> 101 101 <Compile Include="ProblemDataCreator.cs" /> 102 <Compile Include="Views\ComparisonFilterView.cs">103 <SubType>UserControl</SubType>104 </Compile>105 <Compile Include="Views\ComparisonFilterView.Designer.cs">106 <DependentUpon>ComparisonFilterView.cs</DependentUpon>107 </Compile>108 <Compile Include="Views\FilterView.cs">109 <SubType>UserControl</SubType>110 </Compile>111 <Compile Include="Views\FilterView.Designer.cs">112 <DependentUpon>FilterView.cs</DependentUpon>113 </Compile>114 <Compile Include="Views\DataPreprocessingView.cs">115 <SubType>UserControl</SubType>116 </Compile>117 <Compile Include="Views\DataPreprocessingView.designer.cs">118 <DependentUpon>DataPreprocessingView.cs</DependentUpon>119 </Compile>120 <Compile Include="Views\HistogramView.cs">121 <SubType>UserControl</SubType>122 </Compile>123 <Compile Include="Views\HistogramView.Designer.cs">124 <DependentUpon>HistogramView.cs</DependentUpon>125 </Compile>126 <Compile Include="Views\LineChartView.cs">127 <SubType>UserControl</SubType>128 </Compile>129 <Compile Include="Views\LineChartView.Designer.cs">130 <DependentUpon>LineChartView.cs</DependentUpon>131 </Compile>132 <Compile Include="Views\PreprocessingDataTableView.cs">133 <SubType>UserControl</SubType>134 </Compile>135 <Compile Include="Views\PreprocessingDataTableView.Designer.cs">136 <DependentUpon>PreprocessingDataTableView.cs</DependentUpon>137 </Compile>138 <Compile Include="Views\StatisticsView.cs">139 <SubType>UserControl</SubType>140 </Compile>141 <Compile Include="Views\StatisticsView.Designer.cs">142 <DependentUpon>StatisticsView.cs</DependentUpon>143 </Compile>144 <Compile Include="Views\TransformationView.cs">145 <SubType>UserControl</SubType>146 </Compile>147 <Compile Include="Views\TransformationView.Designer.cs">148 <DependentUpon>TransformationView.cs</DependentUpon>149 </Compile>150 102 <None Include="Plugin.cs.frame" /> 151 103 <Compile Include="Implementations\DataGridContent.cs" /> … … 154 106 <Compile Include="Implementations\SearchLogic.cs" /> 155 107 <Compile Include="Implementations\StatisticsLogic.cs" /> 156 <Compile Include="Views\DataGridContentView.cs">157 <SubType>UserControl</SubType>158 </Compile>159 <Compile Include="Views\DataGridContentView.Designer.cs">160 <DependentUpon>DataGridContentView.cs</DependentUpon>161 </Compile>162 108 <Compile Include="Interfaces\IDataGridContent.cs" /> 163 109 <Compile Include="Interfaces\IPreprocessingContext.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/IFilter.cs
r10549 r10557 8 8 namespace HeuristicLab.DataPreprocessing 9 9 { 10 interface IFilter : IItem, IContent10 public interface IFilter : IItem, IContent 11 11 { 12 12 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/SearchLogic.cs
r10539 r10557 25 25 26 26 namespace HeuristicLab.DataPreprocessing { 27 class SearchLogic : ISearchLogic {27 public class SearchLogic : ISearchLogic { 28 28 private readonly IPreprocessingData preprocessingData; 29 29
Note: See TracChangeset
for help on using the changeset viewer.