Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 15:47:05 (11 years ago)
Author:
psteiner
Message:

added logic getters ins content and constructor whicht supports logic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10245 r10252  
    1313  class HistogramContent : Item
    1414  {
     15
     16    private readonly IHistogramLogic histogramLogic;
     17    public HistogramContent(IHistogramLogic theHistogramLogic)
     18    {
     19      histogramLogic = theHistogramLogic;
     20    }
     21
    1522    public HistogramContent(HistogramContent content, Cloner cloner)
    1623      : base(content, cloner)
    1724    {
    1825
     26    }
     27
     28    public IHistogramLogic HistogramLogic
     29    {
     30      get
     31      {
     32        return histogramLogic;
     33      }
    1934    }
    2035
Note: See TracChangeset for help on using the changeset viewer.