Changeset 16474 for branches/2520_PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/IMultiOperator.cs
- Timestamp:
- 12/31/18 08:14:11 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/IMultiOperator.cs
r16453 r16474 22 22 23 23 using System.Collections.Generic; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Core { 27 [StorableType("31136bcb-7c35-404d-bae7-2f9c5f17b767")] 26 28 public interface IMultiOperator : IOperator { 27 29 IEnumerable<IOperator> Operators { get; } … … 29 31 bool RemoveOperator(IOperator op); 30 32 } 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 { 32 36 new IItemList<T> Operators { get; } 33 37 }
Note: See TracChangeset
for help on using the changeset viewer.