Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs @ 10245

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

quick fix content classes

File size: 703 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3using System.Drawing;
4using System;
5using System.Collections.Generic;
6using System.Linq;
7using System.Text;
8
9namespace HeuristicLab.DataPreprocessing
10{
11  [Item("LineChartContent", "Represents the line chart grid.")]
12  class LineChartContent : Item
13  {
14    public LineChartContent(LineChartContent content, Cloner cloner)
15      : base(content, cloner)
16    {
17
18    }
19
20    public static new Image StaticItemImage
21    {
22      get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
23    }
24
25    public override IDeepCloneable Clone(Cloner cloner)
26    {
27      return new LineChartContent(this, cloner);
28    }
29  }
30}
Note: See TracBrowser for help on using the repository browser.