Changeset 10252 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
- Timestamp:
- 12/18/13 15:47:05 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10245 r10252 13 13 class HistogramContent : Item 14 14 { 15 16 private readonly IHistogramLogic histogramLogic; 17 public HistogramContent(IHistogramLogic theHistogramLogic) 18 { 19 histogramLogic = theHistogramLogic; 20 } 21 15 22 public HistogramContent(HistogramContent content, Cloner cloner) 16 23 : base(content, cloner) 17 24 { 18 25 26 } 27 28 public IHistogramLogic HistogramLogic 29 { 30 get 31 { 32 return histogramLogic; 33 } 19 34 } 20 35
Note: See TracChangeset
for help on using the changeset viewer.