Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/10 02:54:35 (13 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/ProblemClass.cs

    r4481 r4918  
    2020#endregion
    2121
     22using HeuristicLab.Common;
    2223using HeuristicLab.Core;
    2324
     
    2526  [Item("ProblemClass", "An OKB problem class.")]
    2627  public partial class ProblemClass {
     28    protected ProblemClass(ProblemClass original, Cloner cloner) : base(original, cloner) { }
    2729    public ProblemClass() {
    2830      Name = "New Problem Class";
    2931    }
     32
     33    public override IDeepCloneable Clone(Cloner cloner) {
     34      return new ProblemClass(this, cloner);
     35    }
    3036  }
    3137}
Note: See TracChangeset for help on using the changeset viewer.