Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/15 18:47:21 (9 years ago)
Author:
swagner
Message:

#2520: Worked on persistence overhaul

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Persistence/4.0/Core/TransformerAttribute.cs

    r13326 r13347  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2626  public sealed class TransformerAttribute : Attribute {
    2727    public Guid Guid { get; private set; }
    28     public ushort Order { get; private set; }
     28    public uint Order { get; private set; }
    2929
    30     public TransformerAttribute(string guid, ushort order) {
     30    public TransformerAttribute(string guid, uint order) {
    3131      Guid = new Guid(guid);
    3232      Order = order;
     
    4242      return GetTransformerAttribute(type).Guid;
    4343    }
    44     public static ushort GetOrder(Type type) {
     44    public static uint GetOrder(Type type) {
    4545      return GetTransformerAttribute(type).Order;
    4646    }
Note: See TracChangeset for help on using the changeset viewer.