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

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
    23using System;
    34using System.Collections.Generic;
     5using System.Drawing;
    46using System.Linq;
    57using System.Text;
     
    810{
    911  [Item("FilterContent", "Represents the filter grid.")]
    10   class FilterContent : IItem
     12  class FilterContent : Item
    1113  {
     14
     15    public FilterContent(FilterContent 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 FilterContent(this, cloner);
     29    }
     30
    1231  }
    1332}
Note: See TracChangeset for help on using the changeset viewer.