- Timestamp:
- 12/30/18 09:09:24 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableKeyedCollection.cs
r16453 r16471 20 20 #endregion 21 21 22 using HEAL.Fossil; 22 23 namespace HeuristicLab.Collections { 24 [StorableType("5be307b0-41d7-4d8d-a289-fba09fce33f4")] 23 25 public interface IObservableKeyedCollection<TKey, TItem> : IObservableCollection<TItem>, INotifyObservableKeyedCollectionItemsChanged<TKey, TItem> { 24 26 TItem this[TKey key] { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableKeyedList.cs
r16453 r16471 22 22 #endregion 23 23 24 using HEAL.Fossil; 25 24 26 namespace HeuristicLab.Collections { 27 [StorableType("b26c93c5-eb74-41a9-982d-985df4a1eb77")] 25 28 public interface IObservableKeyedList<TKey, TItem> : IObservableKeyedCollection<TKey, TItem>, IObservableList<TItem> { 26 29 } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IndexedItem.cs
r16453 r16471 1 #region License Information 1 using HEAL.Fossil; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Collections { 24 [StorableType(StorableMemberSelection.AllFields, "0a9d0728-5fdc-4e16-b02b-545dbdf0b0fa")] 23 25 public struct IndexedItem<T> { 24 26 private readonly int index;
Note: See TracChangeset
for help on using the changeset viewer.