Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs @ 10246

Last change on this file since 10246 was 10245, checked in by psteiner, 11 years ago

quick fix content classes

File size: 704 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3using System.Drawing;
4using System;
5using System.Collections.Generic;
6
7using System.Linq;
8using System.Text;
9
10namespace HeuristicLab.DataPreprocessing
11{
12  [Item("HistogramContent", "Represents the histogram grid.")]
13  class HistogramContent : Item
14  {
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    }
30  }
31}
Note: See TracBrowser for help on using the repository browser.