Changeset 10658 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
- Timestamp:
- 03/26/14 10:52:55 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10614 r10658 26 26 namespace HeuristicLab.DataPreprocessing { 27 27 [Item("Histogram", "Represents the histogram grid.")] 28 public class HistogramContent : Item, IViewShortcut {28 public class HistogramContent : PreprocessingChartContent { 29 29 30 private readonly IHistogramLogic histogramLogic; 31 public HistogramContent(IHistogramLogic theHistogramLogic) { 32 histogramLogic = theHistogramLogic; 30 public HistogramContent(IChartLogic chartlogic) :base(chartlogic) { 33 31 } 34 32 … … 36 34 : base(content, cloner) { 37 35 38 }39 40 public IHistogramLogic HistogramLogic {41 get {42 return histogramLogic;43 }44 36 } 45 37
Note: See TracChangeset
for help on using the changeset viewer.