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.PermutationEncoding/3.3/PermutationType.cs

    r16453 r16462  
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Data;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Encodings.PermutationEncoding {
    2929  [Item("PermutationType", "Represents a certain type of permutation.")]
    30   [StorableClass]
     30  [StorableType("B37C1815-5F82-4E46-BAE3-D71F801EFF46")]
    3131  public class PermutationType : ValueTypeValue<PermutationTypes> {
    3232    public static new Image StaticItemImage {
     
    3535
    3636    [StorableConstructor]
    37     protected PermutationType(bool deserializing) : base(deserializing) { }
     37    protected PermutationType(StorableConstructorFlag _) : base(_) { }
    3838    protected PermutationType(PermutationType original, Cloner cloner) : base(original, cloner) { }
    3939    public PermutationType() : base() { }
Note: See TracChangeset for help on using the changeset viewer.