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

    r16453 r16462  
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Operators {
     
    3232  /// </summary>
    3333  [Item("CheckedMultiOperator", "A base class for operators which apply arbitrary many other operators of a specific type that can be checked or unchecked.")]
    34   [StorableClass]
     34  [StorableType("7C166074-0171-4574-8689-8CDB75A9BB1A")]
    3535  public abstract class CheckedMultiOperator<T> : MultiOperator<T>, ICheckedMultiOperator<T> where T : class, IOperator {
    3636    /// <summary>
     
    4343
    4444    [StorableConstructor]
    45     protected CheckedMultiOperator(bool deserializing) : base(deserializing) { }
     45    protected CheckedMultiOperator(StorableConstructorFlag _) : base(_) { }
    4646    protected CheckedMultiOperator(CheckedMultiOperator<T> original, Cloner cloner)
    4747      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.