Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Operators/3.3/DoubleCounter.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Operators/3.3/DoubleCounter.cs
r16453 r16462 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Operators { … … 31 31 /// </summary> 32 32 [Item("DoubleCounter", "An operator which increments a double variable.")] 33 [Storable Class]33 [StorableType("0DD61CAD-1FBB-4677-840C-3A1A85D77110")] 34 34 public sealed class DoubleCounter : SingleSuccessorOperator { 35 35 public LookupParameter<DoubleValue> ValueParameter { … … 45 45 46 46 [StorableConstructor] 47 private DoubleCounter( bool deserializing) : base(deserializing) { }47 private DoubleCounter(StorableConstructorFlag _) : base(_) { } 48 48 private DoubleCounter(DoubleCounter original, Cloner cloner) 49 49 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.