Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/17 09:35:48 (7 years ago)
Author:
abeham
Message:

#2775: merged 15084 to stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Core

  • stable/HeuristicLab.Core/3.3/Interfaces/IMultiOperator.cs

    r14186 r15108  
    2121
    2222
     23using System.Collections.Generic;
     24
    2325namespace HeuristicLab.Core {
    24   public interface IMultiOperator<T> : IOperator where T : class,IOperator {
    25     IItemList<T> Operators { get; }
     26  public interface IMultiOperator : IOperator {
     27    IEnumerable<IOperator> Operators { get; }
     28    bool AddOperator(IOperator op);
     29    bool RemoveOperator(IOperator op);
     30  }
     31  public interface IMultiOperator<T> : IMultiOperator where T : class,IOperator {
     32    new IItemList<T> Operators { get; }
    2633  }
    2734}
Note: See TracChangeset for help on using the changeset viewer.