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.Operators/3.3/SubScopesCloner.cs

    r16453 r16462  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2622using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     23using HEAL.Fossil;
    2824using HeuristicLab.Common;
    2925using HeuristicLab.Parameters;
     
    3531  /// </summary>
    3632  [Item("SubScopesCloner", "An operator which creates multiple copies of the subscopes of the current scope.")]
    37   [StorableClass]
     33  [StorableType("1F299CDC-13E0-4F12-9E2D-7D3CAC8C651C")]
    3834  public class SubScopesCloner : SingleSuccessorOperator {
    3935    private ScopeParameter CurrentScopeParameter {
     
    5450
    5551    [StorableConstructor]
    56     protected SubScopesCloner(bool deserializing) : base(deserializing) { }
     52    protected SubScopesCloner(StorableConstructorFlag _) : base(_) { }
    5753    protected SubScopesCloner(SubScopesCloner original, Cloner cloner)
    5854      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.