- Timestamp:
- 01/02/19 09:22:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results/IResult.cs
r16453 r16476 22 22 using System; 23 23 using HeuristicLab.Core; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Optimization { 27 [StorableType("e05050f3-5f92-4245-b733-7097d496e781")] 26 28 /// <summary> 27 29 /// Represents a result which has a name and a data type and holds an IItem. -
branches/2520_PersistenceReintegration/HeuristicLab.Optimization/3.3/Results/IResultParameter.cs
r16453 r16476 22 22 using System; 23 23 using HeuristicLab.Core; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Optimization { 27 [StorableType("af5d3f60-6f3a-4a44-a906-688ac8296fe3")] 26 28 public interface IResultParameter : ILookupParameter { 27 29 string ResultCollectionName { get; set; } … … 29 31 } 30 32 33 [StorableType("803e6ad6-dd9d-497a-ad1c-7cd3dc5b0d3c")] 31 34 public interface IResultParameter<T> : ILookupParameter<T>, IResultParameter where T : class, IItem { 32 35 T DefaultValue { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.