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.Data/3.3/BoolMatrix.cs

    r16453 r16462  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Data {
    2929  [Item("BoolMatrix", "Represents a matrix of boolean values.")]
    30   [StorableClass]
     30  [StorableType("A6456658-0B85-4C63-A6DA-FA82EB861B70")]
    3131  public class BoolMatrix : ValueTypeMatrix<bool>, IStringConvertibleMatrix {
    3232    [StorableConstructor]
    33     protected BoolMatrix(bool deserializing) : base(deserializing) { }
     33    protected BoolMatrix(StorableConstructorFlag _) : base(_) { }
    3434    protected BoolMatrix(BoolMatrix original, Cloner cloner)
    3535      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.