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.DebugEngine/3.3/OperatorTrace.cs

    r16453 r16462  
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.DebugEngine {
    3131
    32   [StorableClass]
     32  [StorableType("F694C6E8-39EC-4705-AB77-D00147A4D542")]
    3333  public class OperatorTrace : ObservableList<IOperator>, IContent, IDeepCloneable {
    3434
     
    6868
    6969    [StorableConstructor]
    70     protected OperatorTrace(bool deserializing) : base(deserializing) { }
     70    protected OperatorTrace(StorableConstructorFlag _) : base(_) { }
    7171
    7272    protected OperatorTrace(OperatorTrace original, Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.