Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (6 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBRun.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    3030using HeuristicLab.Core;
    3131using HeuristicLab.Optimization;
    32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     32using HEAL.Attic;
    3333using HeuristicLab.Persistence.Default.Xml;
    3434
    3535namespace HeuristicLab.Clients.OKB.RunCreation {
    3636  [Item("OKB Run", "The parameters and results of an algorithm run which are stored in the OKB.")]
    37   [StorableClass]
     37  [StorableType("357B418B-4384-48EC-AAB3-F3008A7CD961")]
    3838  public sealed class OKBRun : NamedItemWrapper<IRun>, IRun, IStorableContent {
    3939    public string Filename { get; set; }
     
    111111
    112112    [StorableConstructor]
    113     private OKBRun(bool deserializing) : base(deserializing) { }
     113    private OKBRun(StorableConstructorFlag _) : base(_) { }
    114114    private OKBRun(OKBRun original, Cloner cloner)
    115115      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.