Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Schedule.cs

    r16453 r16462  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Data;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Encodings.ScheduleEncoding {
    3131  [Item("Schedule", "Represents the general solution for scheduling problems.")]
    32   [StorableClass]
     32  [StorableType("EA6D14A3-7FA6-4B4B-B7F6-40B42657D398")]
    3333  public sealed class Schedule : NamedItem, IScheduleEncoding {
    3434
     
    6363
    6464    [StorableConstructor]
    65     private Schedule(bool deserializing) : base(deserializing) { }
     65    private Schedule(StorableConstructorFlag _) : base(_) { }
    6666    private Schedule(Schedule original, Cloner cloner)
    6767      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.