Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationTCPChannel.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/EvaluationTCPChannel.cs
r16453 r16462 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Problems.ExternalEvaluation { 31 31 [Item("EvaluationTCPChannel", "A channel that creates a TCP connection over a network.")] 32 [Storable Class]32 [StorableType("FECC0F5B-B22A-4117-888D-5B8B84332D24")] 33 33 public class EvaluationTCPChannel : EvaluationChannel { 34 34 … … 63 63 #region Construction & Cloning 64 64 [StorableConstructor] 65 protected EvaluationTCPChannel( bool deserializing) : base(deserializing) { }65 protected EvaluationTCPChannel(StorableConstructorFlag _) : base(_) { } 66 66 protected EvaluationTCPChannel(EvaluationTCPChannel original, Cloner cloner) 67 67 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.