Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationChannel.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationChannel.cs
r16453 r16462 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 26 26 27 27 namespace HeuristicLab.Problems.ExternalEvaluation { 28 28 [Item("EvaluationChannel", "Abstract base class for channels to be used in an external evaluation problem.")] 29 [Storable Class]29 [StorableType("2BE4FE9D-D5FE-45C3-9F85-3BF7200F0913")] 30 30 public abstract class EvaluationChannel : NamedItem, IEvaluationChannel { 31 31 public override bool CanChangeName { get { return false; } } … … 33 33 34 34 [StorableConstructor] 35 protected EvaluationChannel( bool deserializing) : base(deserializing) { }35 protected EvaluationChannel(StorableConstructorFlag _) : base(_) { } 36 36 protected EvaluationChannel(EvaluationChannel original, Cloner cloner) : base(original, cloner) { } 37 37 protected EvaluationChannel()
Note: See TracChangeset
for help on using the changeset viewer.