Free cookie consent management tool by TermsFeed Policy Generator

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

quick fix content classes

File:
1 edited

Legend:

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

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using System.Drawing;
    24using System;
    35using System.Collections.Generic;
     6
    47using System.Linq;
    58using System.Text;
     
    811{
    912  [Item("HistogramContent", "Represents the histogram grid.")]
    10   class HistogramContent : IItem
     13  class HistogramContent : Item
    1114  {
     15    public HistogramContent(HistogramContent content, Cloner cloner)
     16      : base(content, cloner)
     17    {
     18
     19    }
     20
     21    public static new Image StaticItemImage
     22    {
     23      get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
     24    }
     25
     26    public override IDeepCloneable Clone(Cloner cloner)
     27    {
     28      return new HistogramContent(this, cloner);
     29    }
    1230  }
    1331}
Note: See TracChangeset for help on using the changeset viewer.