- Timestamp:
- 10/07/10 01:49:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/Problem.cs
r4492 r4566 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 … … 30 31 ProblemClassId = 1; 31 32 } 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 } 32 40 } 33 41 }
Note: See TracChangeset
for help on using the changeset viewer.