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.Algorithms.Benchmarks/3.3/Benchmark.cs

    r16453 r16462  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Optimization;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Algorithms.Benchmarks {
    3131  [Item("Benchmark", "Base class for benchmarks.")]
    32   [StorableClass]
     32  [StorableType("0715912F-4F40-40F6-AC08-677CC4F76819")]
    3333  public abstract class Benchmark : IBenchmark {
    3434    public virtual string ItemName {
     
    6363
    6464    [StorableConstructor]
    65     protected Benchmark(bool deserializing) { }
     65    protected Benchmark(StorableConstructorFlag _) { }
    6666    protected Benchmark(Benchmark original, Cloner cloner) {
    6767      cloner.RegisterClonedObject(original, this);
Note: See TracChangeset for help on using the changeset viewer.