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.Problems.VehicleRouting/3.4/Analyzer/VRPSolution.cs

    r16453 r16462  
    2525using HeuristicLab.Core;
    2626using HeuristicLab.Data;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828using HeuristicLab.Problems.VehicleRouting.Interfaces;
    2929
     
    3333  /// </summary>
    3434  [Item("VRPSolution", "Represents a VRP solution which can be visualized in the GUI.")]
    35   [StorableClass]
     35  [StorableType("74CBBEDB-DE6E-4122-AC38-F49DC2B85730")]
    3636  public sealed class VRPSolution : Item {
    3737    public static new Image StaticItemImage {
     
    9090    }
    9191    [StorableConstructor]
    92     private VRPSolution(bool deserializing) : base(deserializing) { }
     92    private VRPSolution(StorableConstructorFlag _) : base(_) { }
    9393
    9494    [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset for help on using the changeset viewer.