Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Parameters/3.3/ScopeTreeLookupParameter.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Parameters/3.3/ScopeTreeLookupParameter.cs
r16453 r16462 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 29 29 namespace HeuristicLab.Parameters { … … 32 32 /// </summary> 33 33 [Item("ScopeTreeLookupParameter", "A generic parameter representing instances of type T which are collected from or written to scope tree.")] 34 [Storable Class]34 [StorableType("51F36637-C22C-4CDC-B34B-F49CA7896E35")] 35 35 public class ScopeTreeLookupParameter<T> : LookupParameter<ItemArray<T>>, IScopeTreeLookupParameter<T> where T : class, IItem { 36 36 [Storable] … … 48 48 49 49 [StorableConstructor] 50 protected ScopeTreeLookupParameter( bool deserializing) : base(deserializing) { }50 protected ScopeTreeLookupParameter(StorableConstructorFlag _) : base(_) { } 51 51 protected ScopeTreeLookupParameter(ScopeTreeLookupParameter<T> original, Cloner cloner) 52 52 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.