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/ValueTypeArray.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("ValueTypeArray", "An abstract base class for representing arrays of value types.")]
    34   [StorableClass]
     34  [StorableType("6A05E421-E015-44A8-959F-5711CF9400A9")]
    3535  public abstract class ValueTypeArray<T> : Item, IValueTypeArray<T> where T : struct {
    3636    private const int maximumToStringLength = 100;
     
    112112
    113113    [StorableConstructor]
    114     protected ValueTypeArray(bool deserializing) : base(deserializing) { }
     114    protected ValueTypeArray(StorableConstructorFlag _) : base(_) { }
    115115    protected ValueTypeArray(ValueTypeArray<T> original, Cloner cloner)
    116116      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.