Changeset 17097 for stable/HeuristicLab.Data/3.3/DoubleRange.cs
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Data
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3 (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data/3.3 merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/DoubleRange.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Data { 28 [Storable Class]28 [StorableType("884665C1-FE7A-4022-8A7A-8ECFF7358146")] 29 29 [Item("DoubleRange", "Represents a range of values betweent start and end.")] 30 30 public class DoubleRange : StringConvertibleValueTuple<DoubleValue, DoubleValue> { … … 43 43 44 44 [StorableConstructor] 45 protected DoubleRange( bool deserializing) : base(deserializing) { }45 protected DoubleRange(StorableConstructorFlag _) : base(_) { } 46 46 protected DoubleRange(DoubleRange original, Cloner cloner) 47 47 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.