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/TransformationContent.cs

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using System.Drawing;
    24using System;
    35using System.Collections.Generic;
     
    810{
    911  [Item("TransformationContent", "Represents the transformation grid.")]
    10   class TransformationContent : IItem
     12  class TransformationContent : Item
    1113  {
     14    public TransformationContent(TransformationContent 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 TransformationContent(this, cloner);
     28    }
    1229  }
    1330}
Note: See TracChangeset for help on using the changeset viewer.