Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Problems.DataAnalysis/3.4/DoubleLimit.cs

    r16453 r16462  
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Data;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Problems.DataAnalysis {
    29   [StorableClass]
     29  [StorableType("EB663E63-5F5B-4BD9-9A18-1A164D6E3045")]
    3030  [Item("DoubleLimit", "Represents a lower and a upper bound for double values.")]
    3131  public class DoubleLimit : StringConvertibleValueTuple<DoubleValue, DoubleValue> {
     
    4141
    4242    [StorableConstructor]
    43     protected DoubleLimit(bool deserializing) : base(deserializing) { }
     43    protected DoubleLimit(StorableConstructorFlag _) : base(_) { }
    4444    protected DoubleLimit(DoubleLimit original, Cloner cloner)
    4545      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.