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

    r16453 r16462  
    2323using System.Drawing;
    2424using HeuristicLab.Common;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626
    2727namespace HeuristicLab.Core {
     
    3030  /// </summary>
    3131  [Item("Variable", "A variable which has a name and holds an IItem.")]
    32   [StorableClass]
     32  [StorableType("FF4ED8C3-C0A0-42F9-8EFF-3DC6AAD90EE7")]
    3333  public sealed class Variable : NamedItem, IVariable {
    3434    public override Image ItemImage {
     
    5656
    5757    [StorableConstructor]
    58     private Variable(bool deserializing) : base(deserializing) { }
     58    private Variable(StorableConstructorFlag _) : base(_) { }
    5959    private Variable(Variable original, Cloner cloner)
    6060      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.