Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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.DataPreprocessing/3.4/Content/TransformationContent.cs

    r16453 r16462  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626using HeuristicLab.Problems.DataAnalysis;
    2727
    2828namespace HeuristicLab.DataPreprocessing {
    2929  [Item("Transformation", "Represents the transformation grid.")]
    30   [StorableClass]
     30  [StorableType("43EBAA29-D1FC-4187-8567-0003D88BD748")]
    3131  public class TransformationContent : PreprocessingContent, IViewShortcut {
    3232    public static new Image StaticItemImage {
     
    5252
    5353    [StorableConstructor]
    54     protected TransformationContent(bool deserializing)
    55       : base(deserializing) { }
     54    protected TransformationContent(StorableConstructorFlag _) : base(_) { }
    5655    #endregion
    5756  }
Note: See TracChangeset for help on using the changeset viewer.