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.DataAnalysis.Trading/3.4/ProblemData.cs

    r16453 r16462  
    2727using HeuristicLab.Data;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030
    3131namespace HeuristicLab.Problems.DataAnalysis.Trading {
    32   [StorableClass]
     32  [StorableType("0E535043-BE86-4AF8-8DA1-C82E459F67AB")]
    3333  [Item("TradingProblemData", "Represents an item containing all data defining a trading problem.")]
    3434  public sealed class ProblemData : DataAnalysisProblemData, IProblemData {
     
    16111611
    16121612    [StorableConstructor]
    1613     private ProblemData(bool deserializing) : base(deserializing) { }
     1613    private ProblemData(StorableConstructorFlag _) : base(_) { }
    16141614    [StorableHook(HookType.AfterDeserialization)]
    16151615    private void AfterDeserialization() {
Note: See TracChangeset for help on using the changeset viewer.