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.Core/3.3/Collections/ItemList.cs

    r16453 r16462  
    2626using HeuristicLab.Collections;
    2727using HeuristicLab.Common;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Core {
    31   [StorableClass]
     31  [StorableType("EF6B019D-4ECF-4146-A77D-FF041D0B85F5")]
    3232  [Item("ItemList", "Represents a list of items.")]
    3333  public class ItemList<T> : ObservableList<T>, IItemList<T> where T : class, IItem {
     
    4949
    5050    [StorableConstructor]
    51     protected ItemList(bool deserializing) : base(deserializing) { }
     51    protected ItemList(StorableConstructorFlag _) : base(_) { }
    5252    protected ItemList(ItemList<T> original, Cloner cloner) {
    5353      cloner.RegisterClonedObject(original, this);
Note: See TracChangeset for help on using the changeset viewer.