- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/DirectedGraph/IArc.cs
r14185 r14927 33 33 } 34 34 35 public interface IArc<T> : IArc where T : class, IDeepCloneable {35 public interface IArc<T> : IArc where T : class, IDeepCloneable { 36 36 T Data { get; set; } 37 37 } -
branches/PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/ICheckedMultiOperator.cs
r14185 r14927 22 22 23 23 namespace HeuristicLab.Core { 24 public interface ICheckedMultiOperator<T> : IMultiOperator<T> where T : class, IOperator {24 public interface ICheckedMultiOperator<T> : IMultiOperator<T> where T : class, IOperator { 25 25 new ICheckedItemList<T> Operators { get; } 26 26 } -
branches/PersistenceReintegration/HeuristicLab.Core/3.3/Interfaces/IMultiOperator.cs
r14185 r14927 22 22 23 23 namespace HeuristicLab.Core { 24 public interface IMultiOperator<T> : IOperator where T : class, IOperator {24 public interface IMultiOperator<T> : IOperator where T : class, IOperator { 25 25 IItemList<T> Operators { get; } 26 26 }
Note: See TracChangeset
for help on using the changeset viewer.