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/ValueTypeMatrix.cs

    r16453 r16462  
    2828using HeuristicLab.Common;
    2929using HeuristicLab.Core;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Data {
    3333  [Item("ValueTypeMatrix", "An abstract base class for representing matrices of value types.")]
    34   [StorableClass]
     34  [StorableType("4EDE6858-4628-4F21-8F27-A45C59C2DE36")]
    3535  public abstract class ValueTypeMatrix<T> : Item, IEnumerable<T> where T : struct {
    3636    private const int maximumToStringLength = 100;
     
    141141
    142142    [StorableConstructor]
    143     protected ValueTypeMatrix(bool deserializing) : base(deserializing) { }
     143    protected ValueTypeMatrix(StorableConstructorFlag _) : base(_) { }
    144144    protected ValueTypeMatrix(ValueTypeMatrix<T> original, Cloner cloner)
    145145      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.