Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/15/17 13:26:49 (6 years ago)
Author:
jkarder
Message:

#2520: worked on new persistence

  • changed message definitions
  • updated transformers
  • worked on conversions
  • cleaned up
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Persistence/4.0/Core/StorableConversionAttribute.cs

    r15034 r15529  
    2727  public sealed class StorableConversionAttribute : Attribute {
    2828    public Guid Guid { get; private set; }
    29     public uint SrcVersion { get; private set; }
     29    public uint Version { get; private set; }
    3030
    31     public StorableConversionAttribute(string guid, uint srcVersion) {
     31    public StorableConversionAttribute(string guid, uint version) {
    3232      this.Guid = new Guid(guid);
    33       this.SrcVersion = srcVersion;
     33      this.Version = version;
    3434    }
    3535
     
    4545    }
    4646    public static uint GetVersion(MethodInfo mi) {
    47       return GetStorableConversionAttribute(mi).SrcVersion;
     47      return GetStorableConversionAttribute(mi).Version;
    4848    }
    4949  }
Note: See TracChangeset for help on using the changeset viewer.