Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/UserDefinedOperator.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/UserDefinedOperator.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Operators; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Optimization.Operators { 29 29 [Item("UserDefinedOperator", "An operator that can be parameterized with multiple operators which will be executed one after another.")] 30 [Storable Class]30 [StorableType("2B0E574C-AAD7-4A0B-A4F2-A80F9C428A11")] 31 31 public abstract class UserDefinedOperator : CheckedMultiOperator<IOperator> { 32 32 [StorableConstructor] 33 protected UserDefinedOperator( bool deserializing) : base(deserializing) { }33 protected UserDefinedOperator(StorableConstructorFlag _) : base(_) { } 34 34 protected UserDefinedOperator(UserDefinedOperator original, Cloner cloner) : base(original, cloner) { } 35 35 public UserDefinedOperator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.