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

    r16453 r16462  
    2323using System.Drawing;
    2424using HeuristicLab.Common;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626
    2727namespace HeuristicLab.Core {
     
    2929  /// Represents the base class for all basic item types.
    3030  /// </summary>
    31   [StorableClass]
     31  [StorableType("E7F13DE4-F9A2-4ADC-AB92-5BBA0588CD2D")]
    3232  [Item("Item", "Base class for all HeuristicLab items.")]
    3333  public abstract class Item : IItem {
     
    4949
    5050    [StorableConstructor]
    51     protected Item(bool deserializing) { }
     51    protected Item(StorableConstructorFlag _) { }
    5252    protected Item(Item original, Cloner cloner) {
    5353      cloner.RegisterClonedObject(original, this);
Note: See TracChangeset for help on using the changeset viewer.