Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/07/10 01:49:31 (14 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

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

    r4492 r4566  
    2020#endregion
    2121
     22using HeuristicLab.Common;
    2223using HeuristicLab.Core;
    2324
     
    3031      ProblemClassId = 1;
    3132    }
     33
     34    public override IDeepCloneable Clone(Cloner cloner) {
     35      Problem clone = (Problem)base.Clone(cloner);
     36      clone.PlatformId = PlatformId;
     37      clone.ProblemClassId = ProblemClassId;
     38      return clone;
     39    }
    3240  }
    3341}
Note: See TracChangeset for help on using the changeset viewer.