Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/10 19:31:19 (14 years ago)
Author:
swagner
Message:

Finished cloning refactoring of HeuristicLab.Optimization.Operators (#922)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Optimization.Operators/3.3/UserDefinedOperator.cs

    r3871 r4679  
    2121
    2222using System.Linq;
     23using HeuristicLab.Common;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Operators;
     
    2930  [StorableClass]
    3031  public abstract class UserDefinedOperator : CheckedMultiOperator<IOperator> {
     32    [StorableConstructor]
     33    protected UserDefinedOperator(bool deserializing) : base(deserializing) { }
     34    protected UserDefinedOperator(UserDefinedOperator original, Cloner cloner) : base(original, cloner) { }
     35    public UserDefinedOperator() : base() { }
     36
    3137    public override IOperation Apply() {
    3238      OperationCollection result = new OperationCollection();
Note: See TracChangeset for help on using the changeset viewer.