- Timestamp:
- 11/06/10 01:56:04 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/CloningRefactoring (added) merged: 4656-4693,4696-4697,4711-4714,4718-4719
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Analysis/3.3/MinAverageMaxValueCalculator.cs
r4068 r4722 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; … … 46 47 } 47 48 49 #region Storing & Cloning 50 [StorableConstructor] 51 private MinAverageMaxValueCalculator(bool deserializing) : base(deserializing) { } 52 private MinAverageMaxValueCalculator(MinAverageMaxValueCalculator original, Cloner cloner) : base(original, cloner) { } 53 public override IDeepCloneable Clone(Cloner cloner) { 54 return new MinAverageMaxValueCalculator(this, cloner); 55 } 56 #endregion 48 57 public MinAverageMaxValueCalculator() 49 58 : base() {
Note: See TracChangeset
for help on using the changeset viewer.