Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/30/18 09:09:24 (5 years ago)
Author:
gkronber
Message:

#2520: checked all projects from top to HeuristicLab.Common and added StorableType attributes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Common/3.3/DeepCloneable.cs

    r16453 r16471  
    2020#endregion
    2121
     22using HEAL.Fossil;
    2223
    2324namespace HeuristicLab.Common {
     25  [StorableType("8ed3dd0c-1cb8-4b42-8053-05bd1fcf48ef")]
    2426  /// <summary>
    2527  /// Represents a base class for all deeply cloneable objects.
    2628  /// </summary>
    2729  public abstract class DeepCloneable : IDeepCloneable {
     30    [StorableConstructor]
     31    protected DeepCloneable(StorableConstructorFlag _) { }
     32
    2833    protected DeepCloneable(DeepCloneable original, Cloner cloner) {
    2934      cloner.RegisterClonedObject(original, this);
Note: See TracChangeset for help on using the changeset viewer.