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.Parameters/3.3/ScopeTreeLookupParameter.cs

    r16453 r16462  
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Parameters {
     
    3232  /// </summary>
    3333  [Item("ScopeTreeLookupParameter", "A generic parameter representing instances of type T which are collected from or written to scope tree.")]
    34   [StorableClass]
     34  [StorableType("51F36637-C22C-4CDC-B34B-F49CA7896E35")]
    3535  public class ScopeTreeLookupParameter<T> : LookupParameter<ItemArray<T>>, IScopeTreeLookupParameter<T> where T : class, IItem {
    3636    [Storable]
     
    4848
    4949    [StorableConstructor]
    50     protected ScopeTreeLookupParameter(bool deserializing) : base(deserializing) { }
     50    protected ScopeTreeLookupParameter(StorableConstructorFlag _) : base(_) { }
    5151    protected ScopeTreeLookupParameter(ScopeTreeLookupParameter<T> original, Cloner cloner)
    5252      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.