Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/31/18 08:14:11 (5 years ago)
Author:
gkronber
Message:

#2520: checked and added StorableType attribute in projects up to HeuristicLab.MainForm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/IMultiOperator.cs

    r16453 r16474  
    2222
    2323using System.Collections.Generic;
     24using HEAL.Fossil;
    2425
    2526namespace HeuristicLab.Core {
     27  [StorableType("31136bcb-7c35-404d-bae7-2f9c5f17b767")]
    2628  public interface IMultiOperator : IOperator {
    2729    IEnumerable<IOperator> Operators { get; }
     
    2931    bool RemoveOperator(IOperator op);
    3032  }
    31   public interface IMultiOperator<T> : IMultiOperator where T : class,IOperator {
     33
     34  [StorableType("b2f95075-48df-43c8-b4a9-e404e357fabd")]
     35  public interface IMultiOperator<T> : IMultiOperator where T : class, IOperator {
    3236    new IItemList<T> Operators { get; }
    3337  }
Note: See TracChangeset for help on using the changeset viewer.