Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Problems.ExternalEvaluation/3.4/Drivers/EvaluationTCPChannel.cs

    r16453 r16462  
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Problems.ExternalEvaluation {
    3131  [Item("EvaluationTCPChannel", "A channel that creates a TCP connection over a network.")]
    32   [StorableClass]
     32  [StorableType("FECC0F5B-B22A-4117-888D-5B8B84332D24")]
    3333  public class EvaluationTCPChannel : EvaluationChannel {
    3434
     
    6363    #region Construction & Cloning
    6464    [StorableConstructor]
    65     protected EvaluationTCPChannel(bool deserializing) : base(deserializing) { }
     65    protected EvaluationTCPChannel(StorableConstructorFlag _) : base(_) { }
    6666    protected EvaluationTCPChannel(EvaluationTCPChannel original, Cloner cloner)
    6767      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.