Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Optimization.Operators/3.3/UserDefinedOperator.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2424using HeuristicLab.Core;
    2525using HeuristicLab.Operators;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Optimization.Operators {
    2929  [Item("UserDefinedOperator", "An operator that can be parameterized with multiple operators which will be executed one after another.")]
    30   [StorableClass]
     30  [StorableType("2B0E574C-AAD7-4A0B-A4F2-A80F9C428A11")]
    3131  public abstract class UserDefinedOperator : CheckedMultiOperator<IOperator> {
    3232    [StorableConstructor]
    33     protected UserDefinedOperator(bool deserializing) : base(deserializing) { }
     33    protected UserDefinedOperator(StorableConstructorFlag _) : base(_) { }
    3434    protected UserDefinedOperator(UserDefinedOperator original, Cloner cloner) : base(original, cloner) { }
    3535    public UserDefinedOperator() : base() { }
Note: See TracChangeset for help on using the changeset viewer.